mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-19 08:31:11 +00:00
Error was simply failure of the interrupt-mode setter. Fixed.
This commit is contained in:
parent
b3da16911f
commit
7bd45d308a
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user