summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/amiga.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/amiga.c')
-rw-r--r--src/mame/machine/amiga.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/amiga.c b/src/mame/machine/amiga.c
index 8c821f843ff..3db22d69dfa 100644
--- a/src/mame/machine/amiga.c
+++ b/src/mame/machine/amiga.c
@@ -1039,7 +1039,7 @@ READ16_HANDLER( amiga_cia_r )
}
/* handle the reads */
- data = mos6526_r(cia, offset >> 7);
+ data = mos6526_r(cia, *space, offset >> 7);
if (LOG_CIA)
logerror("%06x:cia_%c_read(%03x) = %04x & %04x\n", space->device().safe_pc(), 'A' + ((~offset & 0x0800) >> 11), offset * 2, data << shift, mem_mask);
@@ -1081,7 +1081,7 @@ WRITE16_HANDLER( amiga_cia_w )
}
/* handle the writes */
- mos6526_w(cia, offset >> 7, (UINT8) data);
+ mos6526_w(cia, *space, offset >> 7, (UINT8) data);
}