summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/h6280
diff options
context:
space:
mode:
author R. Belmont <rb6502@users.noreply.github.com>2013-01-04 01:45:46 +0000
committer R. Belmont <rb6502@users.noreply.github.com>2013-01-04 01:45:46 +0000
commita31753f9b1169aa6742fbc4e2b52d71a7ae7efc8 (patch)
treea140cb74dc256a11055059ce3ed39ec4070714eb /src/emu/cpu/h6280
parent3ed824ade06e2988125b7d068c9eb832bfd38bb6 (diff)
And I missed the PC (nw)
Diffstat (limited to 'src/emu/cpu/h6280')
-rw-r--r--src/emu/cpu/h6280/h6280.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/h6280/h6280.c b/src/emu/cpu/h6280/h6280.c
index d6b726330fb..0fce00ea0c4 100644
--- a/src/emu/cpu/h6280/h6280.c
+++ b/src/emu/cpu/h6280/h6280.c
@@ -176,7 +176,7 @@ void h6280_device::device_start()
// register our state for the debugger
state_add(STATE_GENPC, "GENPC", m_pc.w.l).noshow();
state_add(STATE_GENFLAGS, "GENFLAGS", m_p).callimport().callexport().formatstr("%8s").noshow();
- state_add(H6280_PC, "PC:", m_pc.d).mask(0xffff);
+ state_add(H6280_PC, "PC", m_pc.d).mask(0xffff);
state_add(H6280_S, "S", m_sp.b.l).mask(0xff);
state_add(H6280_P, "P", m_p).mask(0xff);
state_add(H6280_A, "A", m_a).mask(0xff);