summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/adam/ide.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/adam/ide.cpp')
-rw-r--r--src/devices/bus/adam/ide.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/bus/adam/ide.cpp b/src/devices/bus/adam/ide.cpp
index 98078003f4b..114e9eeb2e6 100644
--- a/src/devices/bus/adam/ide.cpp
+++ b/src/devices/bus/adam/ide.cpp
@@ -116,7 +116,7 @@ uint8_t powermate_ide_device::adam_bd_r(offs_t offset, uint8_t data, int bmreq,
case 0x05:
case 0x06:
case 0x07:
- data = m_ata->read_cs0(offset & 0x07, 0xff);
+ data = m_ata->cs0_r(offset & 0x07, 0xff);
break;
case 0x40: // Printer status
@@ -137,7 +137,7 @@ uint8_t powermate_ide_device::adam_bd_r(offs_t offset, uint8_t data, int bmreq,
break;
case 0x58:
- m_ata_data = m_ata->read_cs0(0);
+ m_ata_data = m_ata->cs0_r(0);
data = m_ata_data & 0xff;
break;
@@ -147,7 +147,7 @@ uint8_t powermate_ide_device::adam_bd_r(offs_t offset, uint8_t data, int bmreq,
break;
case 0x5a:
- data = m_ata->read_cs1(6, 0xff);
+ data = m_ata->cs1_r(6, 0xff);
break;
case 0x5b: // Digital Input Register
@@ -176,7 +176,7 @@ void powermate_ide_device::adam_bd_w(offs_t offset, uint8_t data, int bmreq, int
case 0x05:
case 0x06:
case 0x07:
- m_ata->write_cs0(offset & 0x07, data, 0xff);
+ m_ata->cs0_w(offset & 0x07, data, 0xff);
break;
case 0x40:
@@ -188,7 +188,7 @@ void powermate_ide_device::adam_bd_w(offs_t offset, uint8_t data, int bmreq, int
case 0x58:
m_ata_data |= data;
- m_ata->write_cs0(0, m_ata_data);
+ m_ata->cs0_w(0, m_ata_data);
break;
case 0x59: