1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-10-01 13:58:20 +00:00

Error was simply failure of the interrupt-mode setter. Fixed.

This commit is contained in:
Thomas Harte 2017-06-03 18:58:13 -04:00
parent b3da16911f
commit 7bd45d308a

View File

@ -1680,7 +1680,7 @@ template <class T> class Processor: public MicroOpScheduler<MicroOp> {
case Register::IFF1: iff1_ = !!value; break;
case Register::IFF2: iff2_ = !!value; break;
case Register::IM: interrupt_mode_ = value % 2; break;
case Register::IM: interrupt_mode_ = value % 3; break;
default: break;
}