diff options
author | 2013-01-04 01:45:46 +0000 | |
---|---|---|
committer | 2013-01-04 01:45:46 +0000 | |
commit | a31753f9b1169aa6742fbc4e2b52d71a7ae7efc8 (patch) | |
tree | a140cb74dc256a11055059ce3ed39ec4070714eb /src/emu/cpu/h6280 | |
parent | 3ed824ade06e2988125b7d068c9eb832bfd38bb6 (diff) |
And I missed the PC (nw)
Diffstat (limited to 'src/emu/cpu/h6280')
-rw-r--r-- | src/emu/cpu/h6280/h6280.c | 2 |
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); |