summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/mcs96/mcs96.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/mcs96/mcs96.cpp')
-rw-r--r--src/devices/cpu/mcs96/mcs96.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/mcs96/mcs96.cpp b/src/devices/cpu/mcs96/mcs96.cpp
index e7fbf6463a9..76dbb2d8609 100644
--- a/src/devices/cpu/mcs96/mcs96.cpp
+++ b/src/devices/cpu/mcs96/mcs96.cpp
@@ -58,6 +58,7 @@ void mcs96_device::device_start()
state_add(MCS96_CH, "CH", reinterpret_cast<u8 *>(&register_file[5])[BYTE_XOR_LE(1)]).noshow();
save_item(NAME(inst_state));
+ save_item(NAME(pending_irq));
save_item(NAME(PC));
save_item(NAME(PPC));
save_item(NAME(PSW));
@@ -74,7 +75,6 @@ void mcs96_device::device_reset()
PC = 0x2080;
PPC = PC;
PSW = 0;
- pending_irq = 0x00;
irq_requested = false;
inst_state = STATE_FETCH;
}