diff options
Diffstat (limited to 'src/devices/machine/ataflash.cpp')
-rw-r--r-- | src/devices/machine/ataflash.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/machine/ataflash.cpp b/src/devices/machine/ataflash.cpp index c6fde433b90..991dad90ca6 100644 --- a/src/devices/machine/ataflash.cpp +++ b/src/devices/machine/ataflash.cpp @@ -37,11 +37,11 @@ READ16_MEMBER( ata_flash_pccard_device::read_memory ) if(offset <= 7) { m_8bit_data_transfers = !ACCESSING_BITS_8_15; // HACK - return read16_cs0(space, offset, mem_mask); + return read16_cs0(offset, mem_mask); } else if(offset <= 15) { - return read16_cs1(space, offset & 7, mem_mask); + return read16_cs1(offset & 7, mem_mask); } else { @@ -54,11 +54,11 @@ WRITE16_MEMBER( ata_flash_pccard_device::write_memory ) if(offset <= 7) { m_8bit_data_transfers = !ACCESSING_BITS_8_15; // HACK - write16_cs0(space, offset, data, mem_mask); + write16_cs0(offset, data, mem_mask); } else if( offset <= 15) { - write16_cs1(space, offset & 7, data, mem_mask); + write16_cs1(offset & 7, data, mem_mask); } } |