summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/68153bim.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/68153bim.cpp')
-rw-r--r--src/devices/machine/68153bim.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/68153bim.cpp b/src/devices/machine/68153bim.cpp
index 271e4d63da7..20d63ef959e 100644
--- a/src/devices/machine/68153bim.cpp
+++ b/src/devices/machine/68153bim.cpp
@@ -287,7 +287,7 @@ void bim68153_device::trigger_interrupt(int ch)
//-------------------------------------------------
// read
//-------------------------------------------------
-READ8_MEMBER( bim68153_device::read )
+uint8_t bim68153_device::read(offs_t offset)
{
int vc = offset & REG_VECTOR;
int ch = offset & CHN_MSK;
@@ -301,7 +301,7 @@ READ8_MEMBER( bim68153_device::read )
//-------------------------------------------------
// write
//-------------------------------------------------
-WRITE8_MEMBER( bim68153_device::write )
+void bim68153_device::write(offs_t offset, uint8_t data)
{
int vc = offset & REG_VECTOR;
int ch = offset & CHN_MSK;