summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/aic6250.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/aic6250.cpp')
-rw-r--r--src/devices/machine/aic6250.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/aic6250.cpp b/src/devices/machine/aic6250.cpp
index 9c149f51627..71859bdee05 100644
--- a/src/devices/machine/aic6250.cpp
+++ b/src/devices/machine/aic6250.cpp
@@ -89,7 +89,7 @@ void aic6250_device::map(address_map &map)
map(0xf, 0xf).rw(FUNC(aic6250_device::scsi_latch_data_r), FUNC(aic6250_device::scsi_bsy_rst_w));
}
-READ8_MEMBER(aic6250_device::read)
+u8 aic6250_device::read(address_space &space, offs_t offset)
{
u8 data = space.unmap();
@@ -123,7 +123,7 @@ READ8_MEMBER(aic6250_device::read)
return data;
}
-WRITE8_MEMBER(aic6250_device::write)
+void aic6250_device::write(offs_t offset, u8 data)
{
if (offset)
{