1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-09-29 00:56:21 +00:00

Fixed initial state: interrupt flag is initially low.

This commit is contained in:
Thomas Harte 2016-10-28 21:22:03 -04:00
parent ad00304e8a
commit a106018680

View File

@ -547,7 +547,7 @@ template <class T> class Processor {
_ready_line_is_enabled(false),
_ready_is_active(false),
_scheduledPrograms{nullptr, nullptr, nullptr, nullptr},
_inverseInterruptFlag(Flag::Interrupt),
_inverseInterruptFlag(0),
_s(0),
_nextBusOperation(BusOperation::None),
_interrupt_requests(InterruptRequestFlags::PowerOn),