summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/tms32051/32051ops.inc
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/tms32051/32051ops.inc')
-rw-r--r--src/devices/cpu/tms32051/32051ops.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/tms32051/32051ops.inc b/src/devices/cpu/tms32051/32051ops.inc
index fb78b3a5f18..27827d8cc70 100644
--- a/src/devices/cpu/tms32051/32051ops.inc
+++ b/src/devices/cpu/tms32051/32051ops.inc
@@ -388,7 +388,7 @@ void tms32051_device::op_and_mem()
{
UINT16 ea = GET_ADDRESS();
UINT16 data = DM_READ16(ea);
-
+
m_acc &= (UINT32)(data);
CYCLES(1);
@@ -1359,7 +1359,7 @@ void tms32051_device::op_out()
{
UINT16 port = ROPCODE();
UINT16 ea = GET_ADDRESS();
-
+
UINT16 data = DM_READ16(ea);
m_io->write_word(port << 1, data);