diff options
author | 2021-11-14 15:06:54 -0500 | |
---|---|---|
committer | 2021-11-14 15:06:54 -0500 | |
commit | 379e3db55e5f1212cafaf634232e1f5daeeef450 (patch) | |
tree | 8dc94baabdf964b82585a1de425613255fbe3bbd | |
parent | 224384612e37d0d9f44fe0214930ceffcebdf354 (diff) |
tms9900: Fix PC display for watchpoint hits
-rw-r--r-- | src/devices/cpu/tms9900/tms9900.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/tms9900/tms9900.cpp b/src/devices/cpu/tms9900/tms9900.cpp index 17a0ed02b8e..9ce8c60d22b 100644 --- a/src/devices/cpu/tms9900/tms9900.cpp +++ b/src/devices/cpu/tms9900/tms9900.cpp @@ -221,8 +221,8 @@ void tms99xx_device::device_start() // callexport = need to use the state_export method to read the state variable state_add(i, s_statename[i], m_state_any).callimport().callexport().formatstr("%04X"); } - state_add(STATE_GENPC, "GENPC", PC).formatstr("%4s").noshow(); - state_add(STATE_GENPCBASE, "CURPC", PC).formatstr("%4s").noshow(); + state_add(STATE_GENPC, "GENPC", PC).noshow(); + state_add(STATE_GENPCBASE, "CURPC", PC).noshow(); state_add(STATE_GENFLAGS, "status", m_state_any).callimport().callexport().formatstr("%16s").noshow(); build_command_lookup_table(); |