summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/scudsp/scudsp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/scudsp/scudsp.cpp')
-rw-r--r--src/devices/cpu/scudsp/scudsp.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/cpu/scudsp/scudsp.cpp b/src/devices/cpu/scudsp/scudsp.cpp
index 070dc4fbf1d..e9a55e3df0f 100644
--- a/src/devices/cpu/scudsp/scudsp.cpp
+++ b/src/devices/cpu/scudsp/scudsp.cpp
@@ -969,14 +969,14 @@ void scudsp_cpu_device::device_start()
state_add( SCUDSP_DELAY, "DELAY", m_delay ).formatstr("%02X").noshow();
state_add( SCUDSP_TOP, "TOP", m_top).formatstr("%02X");
state_add( SCUDSP_LOP, "LOP", m_lop).formatstr("%03X");
- state_add( SCUDSP_RX, "RX", m_rx).formatstr("%08X");
+ state_add( SCUDSP_RX, "RX", m_rx.ui).formatstr("%08X");
state_add( SCUDSP_MUL, "MUL", m_mul).formatstr("%012X");
- state_add( SCUDSP_RY, "RY", m_ry).formatstr("%08X");
+ state_add( SCUDSP_RY, "RY", m_ry.ui).formatstr("%08X");
state_add( SCUDSP_ALU, "ALU", m_alu).formatstr("%012X");
- state_add( SCUDSP_PH, "PH", m_ph).formatstr("%04X");
- state_add( SCUDSP_PL, "PL", m_pl).formatstr("%08X");
- state_add( SCUDSP_ACH, "ACH", m_ach).formatstr("%04X");
- state_add( SCUDSP_ACL, "ACL", m_acl).formatstr("%08X");
+ state_add( SCUDSP_PH, "PH", m_ph.ui).formatstr("%04X");
+ state_add( SCUDSP_PL, "PL", m_pl.ui).formatstr("%08X");
+ state_add( SCUDSP_ACH, "ACH", m_ach.ui).formatstr("%04X");
+ state_add( SCUDSP_ACL, "ACL", m_acl.ui).formatstr("%08X");
state_add( SCUDSP_RA0, "RA0", m_ra0).formatstr("%08X");
state_add( SCUDSP_WA0, "WA0", m_wa0).formatstr("%08X");
state_add( SCUDSP_RA, "RA", m_ra ).formatstr("%02X");