enable rtl sim dram stalls

This commit is contained in:
Blaise Tine 2020-03-31 02:41:14 -04:00
parent e92c4b6774
commit bca5ac5e7f

View file

@ -111,6 +111,8 @@ void Simulator::ibus_driver() {
I_dram_stalled_ = true;
}
#endif
vortex_->dram_req_delay = I_dram_stalled_;
}
#endif
@ -236,7 +238,11 @@ void Simulator::dbus_driver() {
}
#endif
#ifdef USE_MULTICORE
vortex_->out_dram_req_delay = dram_stalled_;
#else
vortex_->dram_req_delay = dram_stalled_;
#endif
}
void Simulator::io_handler() {