summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2017-09-28 00:13:19 -0400
committer AJR <ajrhacker@users.noreply.github.com>2017-09-28 00:13:19 -0400
commit7a9e9cbe3ca1a7d5681bc25b16f76c721b041fc1 (patch)
treee883567879274338cc97a0b55beaa9bd63136a6f
parent699a3ea6e496f88056cb94dc58d2210e7f789e2b (diff)
scudsp: In union there is weakness (nw)
-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");