summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/990_tap.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/machine/990_tap.c')
-rw-r--r--src/mess/machine/990_tap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/machine/990_tap.c b/src/mess/machine/990_tap.c
index 92b50150873..f2038bc1e9b 100644
--- a/src/mess/machine/990_tap.c
+++ b/src/mess/machine/990_tap.c
@@ -306,7 +306,7 @@ static void cmd_read_binary_forward(device_t *device)
/* DMA */
for (i=0; i<bytes_read; i+=2)
{
- device->machine().device("maincpu")->memory().space(AS_PROGRAM)->write_word(dma_address, (((int) buffer[i]) << 8) | buffer[i+1]);
+ device->machine().device("maincpu")->memory().space(AS_PROGRAM).write_word(dma_address, (((int) buffer[i]) << 8) | buffer[i+1]);
dma_address = (dma_address + 2) & 0x1ffffe;
}