mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-26 08:49:37 +00:00
Fixed initial state: interrupt flag is initially low.
This commit is contained in:
parent
ad00304e8a
commit
a106018680
@ -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),
|
||||
|
Loading…
Reference in New Issue
Block a user