1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-23 03:32:32 +00:00

Ensured the always-on bit of the interrupt status register is indeed on.

This commit is contained in:
Thomas Harte 2016-10-03 19:15:31 -04:00
parent 6ecd8aac61
commit dae6b45464

View File

@ -40,7 +40,7 @@ namespace {
Machine::Machine() :
_interrupt_control(0),
_interrupt_status(Interrupt::PowerOnReset),
_interrupt_status(Interrupt::PowerOnReset | 0x80),
_frameCycles(0),
_displayOutputPosition(0),
_audioOutputPosition(0),