From c905c30939debf54d5e6fbc2f0630b28e2647911 Mon Sep 17 00:00:00 2001 From: "Alex W. Jackson" Date: Mon, 14 Oct 2013 01:37:05 +0000 Subject: [PATCH] Fix register view in V25 too (nw) --- src/emu/cpu/nec/v25.c | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/src/emu/cpu/nec/v25.c b/src/emu/cpu/nec/v25.c index b4cdac81582..b6627fe3b1c 100644 --- a/src/emu/cpu/nec/v25.c +++ b/src/emu/cpu/nec/v25.c @@ -497,21 +497,21 @@ void v25_common_device::device_start() m_direct = &m_program->direct(); m_io = &space(AS_IO); - state_add( V25_PC, "PC", m_debugger_temp).callimport().callexport().formatstr("%5X"); - state_add( V25_IP, "IP", m_ip).formatstr("%4X"); - state_add( V25_SP, "SP", m_debugger_temp).callimport().callexport().formatstr("%4X"); - state_add( V25_FLAGS, "F", m_debugger_temp).callimport().callexport().formatstr("%4X"); - state_add( V25_AW, "AW", m_debugger_temp).callimport().callexport().formatstr("%4X"); - state_add( V25_CW, "CW", m_debugger_temp).callimport().callexport().formatstr("%4X"); - state_add( V25_DW, "DW", m_debugger_temp).callimport().callexport().formatstr("%4X"); - state_add( V25_BW, "BW", m_debugger_temp).callimport().callexport().formatstr("%4X"); - state_add( V25_BP, "BP", m_debugger_temp).callimport().callexport().formatstr("%4X"); - state_add( V25_IX, "IX", m_debugger_temp).callimport().callexport().formatstr("%4X"); - state_add( V25_IY, "IY", m_debugger_temp).callimport().callexport().formatstr("%4X"); - state_add( V25_ES, "DS1", m_debugger_temp).callimport().callexport().formatstr("%4X"); - state_add( V25_CS, "PS", m_debugger_temp).callimport().callexport().formatstr("%4X"); - state_add( V25_SS, "SS", m_debugger_temp).callimport().callexport().formatstr("%4X"); - state_add( V25_DS, "DS0", m_debugger_temp).callimport().callexport().formatstr("%4X"); + state_add( V25_PC, "PC", m_debugger_temp).callimport().callexport().formatstr("%05X"); + state_add( V25_IP, "IP", m_ip).formatstr("%04X"); + state_add( V25_SP, "SP", m_debugger_temp).callimport().callexport().formatstr("%04X"); + state_add( V25_FLAGS, "F", m_debugger_temp).callimport().callexport().formatstr("%04X"); + state_add( V25_AW, "AW", m_debugger_temp).callimport().callexport().formatstr("%04X"); + state_add( V25_CW, "CW", m_debugger_temp).callimport().callexport().formatstr("%04X"); + state_add( V25_DW, "DW", m_debugger_temp).callimport().callexport().formatstr("%04X"); + state_add( V25_BW, "BW", m_debugger_temp).callimport().callexport().formatstr("%04X"); + state_add( V25_BP, "BP", m_debugger_temp).callimport().callexport().formatstr("%04X"); + state_add( V25_IX, "IX", m_debugger_temp).callimport().callexport().formatstr("%04X"); + state_add( V25_IY, "IY", m_debugger_temp).callimport().callexport().formatstr("%04X"); + state_add( V25_ES, "DS1", m_debugger_temp).callimport().callexport().formatstr("%04X"); + state_add( V25_CS, "PS", m_debugger_temp).callimport().callexport().formatstr("%04X"); + state_add( V25_SS, "SS", m_debugger_temp).callimport().callexport().formatstr("%04X"); + state_add( V25_DS, "DS0", m_debugger_temp).callimport().callexport().formatstr("%04X"); state_add( STATE_GENPC, "GENPC", m_debugger_temp).callimport().callexport().noshow(); state_add( STATE_GENSP, "GENSP", m_debugger_temp).callimport().callexport().noshow();