diff options
Diffstat (limited to 'src/devices/bus/ieee488/hardbox.cpp')
-rw-r--r-- | src/devices/bus/ieee488/hardbox.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/devices/bus/ieee488/hardbox.cpp b/src/devices/bus/ieee488/hardbox.cpp index 0b982ee772d..0ad2db1abfb 100644 --- a/src/devices/bus/ieee488/hardbox.cpp +++ b/src/devices/bus/ieee488/hardbox.cpp @@ -129,17 +129,17 @@ void hardbox_device::hardbox_io(address_map &map) // I8255A 0 interface //------------------------------------------------- -READ8_MEMBER( hardbox_device::ppi0_pa_r ) +uint8_t hardbox_device::ppi0_pa_r() { - return m_bus->read_dio() ^ 0xff; + return m_bus->dio_r() ^ 0xff; } -WRITE8_MEMBER( hardbox_device::ppi0_pb_w ) +void hardbox_device::ppi0_pb_w(uint8_t data) { m_bus->dio_w(this, data ^ 0xff); } -READ8_MEMBER( hardbox_device::ppi0_pc_r ) +uint8_t hardbox_device::ppi0_pc_r() { uint8_t data = ioport("SW1")->read(); @@ -154,7 +154,7 @@ READ8_MEMBER( hardbox_device::ppi0_pc_r ) // I8255A 1 interface //------------------------------------------------- -READ8_MEMBER( hardbox_device::ppi1_pa_r ) +uint8_t hardbox_device::ppi1_pa_r() { /* @@ -185,7 +185,7 @@ READ8_MEMBER( hardbox_device::ppi1_pa_r ) return data; } -WRITE8_MEMBER( hardbox_device::ppi1_pb_w ) +void hardbox_device::ppi1_pb_w(uint8_t data) { /* @@ -214,7 +214,7 @@ WRITE8_MEMBER( hardbox_device::ppi1_pb_w ) m_bus->ren_w(this, !BIT(data, 6)); } -READ8_MEMBER( hardbox_device::ppi1_pc_r ) +uint8_t hardbox_device::ppi1_pc_r() { /* @@ -231,7 +231,7 @@ READ8_MEMBER( hardbox_device::ppi1_pc_r ) */ - uint8_t status = m_hdc->status_r(space, 0); + uint8_t status = m_hdc->status_r(); uint8_t data = 0; data |= (status & corvus_hdc_device::CONTROLLER_BUSY) ? 0 : 0x10; @@ -240,7 +240,7 @@ READ8_MEMBER( hardbox_device::ppi1_pc_r ) return data; } -WRITE8_MEMBER( hardbox_device::ppi1_pc_w ) +void hardbox_device::ppi1_pc_w(uint8_t data) { /* |