summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/pdp8/pdp8.cpp
diff options
context:
space:
mode:
author smf- <smf-@users.noreply.github.com>2016-10-19 14:33:32 +0100
committer smf- <smf-@users.noreply.github.com>2016-10-19 14:33:52 +0100
commitca6f939ebcdb0ba9b2491f339f760b2a2f744c45 (patch)
treeed54d18f05207280796fd897af1be7f9b0383885 /src/devices/cpu/pdp8/pdp8.cpp
parent48ac8f42a552047027bc1c575f6a6e45563f0f05 (diff)
disassembly window fixes (nw)
Diffstat (limited to 'src/devices/cpu/pdp8/pdp8.cpp')
-rw-r--r--src/devices/cpu/pdp8/pdp8.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/pdp8/pdp8.cpp b/src/devices/cpu/pdp8/pdp8.cpp
index d65f4dc7cfe..747bea2ffb9 100644
--- a/src/devices/cpu/pdp8/pdp8.cpp
+++ b/src/devices/cpu/pdp8/pdp8.cpp
@@ -73,7 +73,7 @@ void pdp8_device::device_start()
// register our state for the debugger
state_add(STATE_GENPC, "GENPC", m_pc).noshow();
- state_add(STATE_CURPC, "CURPC", m_pc).noshow();
+ state_add(STATE_GENPCBASE, "CURPC", m_pc).noshow();
state_add(STATE_GENFLAGS, "GENFLAGS", m_l).callimport().callexport().formatstr("%1s").noshow();
state_add(PDP8_PC, "PC", m_pc).mask(0xfff);
state_add(PDP8_AC, "AC", m_ac).mask(0xfff);