From 379e3db55e5f1212cafaf634232e1f5daeeef450 Mon Sep 17 00:00:00 2001 From: AJR Date: Sun, 14 Nov 2021 15:06:54 -0500 Subject: tms9900: Fix PC display for watchpoint hits --- src/devices/cpu/tms9900/tms9900.cpp | 4 ++-- 1 file 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(); -- cgit v1.2.3