diff options
author | 2021-11-18 01:45:49 +1100 | |
---|---|---|
committer | 2021-11-18 01:45:49 +1100 | |
commit | 4292addd9d88c543d87c4144994d344bdddf0b9c (patch) | |
tree | ad3fb1009ebc483aec9f118dc1901392f4413be0 | |
parent | 3d6d942afade93fd3bab2f4eab1e05ff703a8f97 (diff) |
tms9995: fixed pc not displaying when watchpoint hit.
-rw-r--r-- | src/devices/cpu/tms9900/tms9995.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/tms9900/tms9995.cpp b/src/devices/cpu/tms9900/tms9995.cpp index a65647cdf62..e291cf238d6 100644 --- a/src/devices/cpu/tms9900/tms9995.cpp +++ b/src/devices/cpu/tms9900/tms9995.cpp @@ -229,8 +229,8 @@ void tms9995_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_debug).formatstr("%4s").noshow(); - state_add(STATE_GENPCBASE, "CURPC", PC_debug).formatstr("%4s").noshow(); + state_add(STATE_GENPC, "GENPC", PC_debug).noshow(); + state_add(STATE_GENPCBASE, "CURPC", PC_debug).noshow(); state_add(STATE_GENFLAGS, "status", m_state_any).callimport().callexport().formatstr("%16s").noshow(); // Set up the lookup table for command decoding |