diff options
author | 2020-01-26 12:36:51 +1100 | |
---|---|---|
committer | 2020-01-26 12:39:27 +1100 | |
commit | a7fec751edac3808f3b64986c2409be4240c7eb9 (patch) | |
tree | 71241d1d0afe70d39511bab822cba278a5b3009f /src/devices/cpu/unsp/unsp_extended.cpp | |
parent | 832c38bb8d20142a44c694d43e7670c938d19377 (diff) |
srcclean, manual adjustments (nw)
Diffstat (limited to 'src/devices/cpu/unsp/unsp_extended.cpp')
-rw-r--r-- | src/devices/cpu/unsp/unsp_extended.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/cpu/unsp/unsp_extended.cpp b/src/devices/cpu/unsp/unsp_extended.cpp index df5711e8b7b..44f2a2d263d 100644 --- a/src/devices/cpu/unsp/unsp_extended.cpp +++ b/src/devices/cpu/unsp/unsp_extended.cpp @@ -169,7 +169,7 @@ void unsp_20_device::execute_extended_group(uint16_t op) uint16_t b = m_core->m_r[rb]; uint16_t c = read16(imm16_2); - uint32_t storeaddr = imm16_2; // dest address for STORE + uint32_t storeaddr = imm16_2; // dest address for STORE uint32_t lres; bool write = do_basic_alu_ops(aluop, lres, b, c, storeaddr, (ra != 7)); @@ -258,7 +258,7 @@ void unsp_20_device::execute_extended_group(uint16_t op) uint16_t b = m_core->m_r[rx + 8]; uint16_t c = imm6; - uint32_t storeaddr = 0; // dest address for STORE + uint32_t storeaddr = 0; // dest address for STORE uint32_t lres; if (aluop == 0xd) @@ -293,7 +293,7 @@ void unsp_20_device::execute_extended_group(uint16_t op) uint16_t b = m_core->m_r[rx + 8]; uint16_t c = read16(addr); - uint32_t storeaddr = addr; // dest address for STORE + uint32_t storeaddr = addr; // dest address for STORE uint32_t lres; bool write = do_basic_alu_ops(aluop, lres, b, c, storeaddr, true); |