diff options
author | 2012-10-25 16:56:12 +0000 | |
---|---|---|
committer | 2012-10-25 16:56:12 +0000 | |
commit | c60f93be948c9443aff0cdac0fcb8a35b57fd4cd (patch) | |
tree | 9c03f217ef037902970e93844798f38cf9c01fc0 /src/mess/machine/c64_georam.c | |
parent | 2fe5db642f1855930897eb0efaa749e6020b41d0 (diff) |
(MESS) mos6566: Added BA/AEC outputs in preparation for 6502 RDY support, and implemented light pen trigger. (nw)
Diffstat (limited to 'src/mess/machine/c64_georam.c')
-rw-r--r-- | src/mess/machine/c64_georam.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mess/machine/c64_georam.c b/src/mess/machine/c64_georam.c index b03ed940088..40dd955ef6c 100644 --- a/src/mess/machine/c64_georam.c +++ b/src/mess/machine/c64_georam.c @@ -62,7 +62,7 @@ void c64_georam_cartridge_device::device_reset() // c64_cd_r - cartridge data read //------------------------------------------------- -UINT8 c64_georam_cartridge_device::c64_cd_r(address_space &space, offs_t offset, UINT8 data, int ba, int roml, int romh, int io1, int io2) +UINT8 c64_georam_cartridge_device::c64_cd_r(address_space &space, offs_t offset, UINT8 data, int sphi2, int ba, int roml, int romh, int io1, int io2) { if (!io1) { @@ -78,7 +78,7 @@ UINT8 c64_georam_cartridge_device::c64_cd_r(address_space &space, offs_t offset, // c64_cd_w - cartridge data write //------------------------------------------------- -void c64_georam_cartridge_device::c64_cd_w(address_space &space, offs_t offset, UINT8 data, int ba, int roml, int romh, int io1, int io2) +void c64_georam_cartridge_device::c64_cd_w(address_space &space, offs_t offset, UINT8 data, int sphi2, int ba, int roml, int romh, int io1, int io2) { if (!io1) { |