1
0
mirror of https://github.com/rkujawa/rk65c02.git synced 2024-06-18 08:29:29 +00:00

Initial state of the CPU has IRQ disable bit set.

This commit is contained in:
Radosław Kujawa 2017-01-25 21:17:18 +01:00
parent 13ef3e2d08
commit 285d2ee828

View File

@ -17,7 +17,7 @@ rk65c02_init(bus_t *b)
e.bus = b;
e.state = STOPPED;
e.regs.P = P_UNDEFINED;
e.regs.P = P_UNDEFINED|P_IRQ_DISABLE;
return e;
}