1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-22 12:33:29 +00:00

Don't duplicate work that the RESET program already does.

This commit is contained in:
Thomas Harte 2022-06-08 11:42:56 -04:00
parent 50130b7004
commit 8cbf929671

View File

@ -2785,7 +2785,6 @@ void Processor<BusHandler, dtack_is_implicit, permit_overrun, signal_will_perfor
template <class BusHandler, bool dtack_is_implicit, bool permit_overrun, bool signal_will_perform>
void Processor<BusHandler, dtack_is_implicit, permit_overrun, signal_will_perform>::reset() {
state_ = Reset;
status_.begin_exception(7);
}
}