summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/i4004/i4004.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/i4004/i4004.cpp')
-rw-r--r--src/devices/cpu/i4004/i4004.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/devices/cpu/i4004/i4004.cpp b/src/devices/cpu/i4004/i4004.cpp
index e7a63564c59..ce67670a007 100644
--- a/src/devices/cpu/i4004/i4004.cpp
+++ b/src/devices/cpu/i4004/i4004.cpp
@@ -418,6 +418,7 @@ void i4004_cpu_device::device_start()
{
state_add(I4004_PC, "PC", m_PC.w.l).mask(0x0fff);
state_add(STATE_GENPC, "GENPC", m_PC.w.l).mask(0x0fff).noshow();
+ state_add(STATE_GENPCBASE,"CURPC", m_PC.w.l).mask(0x0fff).noshow();
state_add(STATE_GENFLAGS, "GENFLAGS", m_flags).mask(0x0f).callimport().callexport().noshow().formatstr("%4s");
state_add(I4004_A, "A", m_A).mask(0x0f);