1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-12-25 18:30:21 +00:00

Bus and address error don't affect interrupt level.

This commit is contained in:
Thomas Harte 2022-06-11 21:10:24 -04:00
parent 0a6b2b7d32
commit 2a9a05785c

View File

@ -475,7 +475,7 @@ void Processor<BusHandler, dtack_is_implicit, permit_overrun, signal_will_perfor
IdleBus(2); IdleBus(2);
// Switch to supervisor mode, disable interrupts. // Switch to supervisor mode, disable interrupts.
captured_status_.w = status_.begin_exception(7); captured_status_.w = status_.begin_exception();
should_trace_ = 0; should_trace_ = 0;
did_update_status(); did_update_status();