summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/ieee488/c8050.cpp
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2020-05-20 20:38:24 +0200
committer Ivan Vangelista <mesgnet@yahoo.it>2020-05-20 20:38:24 +0200
commit113badde167bda29fa012108c9a9fa9ab1602114 (patch)
treeeb2b06718809f35c124c5f02167a1121bb7f61e6 /src/devices/bus/ieee488/c8050.cpp
parent972cbb40a7f5fa7042782c932893470c164c2a39 (diff)
devices/bus: a few macro removals (nw)
Diffstat (limited to 'src/devices/bus/ieee488/c8050.cpp')
-rw-r--r--src/devices/bus/ieee488/c8050.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/devices/bus/ieee488/c8050.cpp b/src/devices/bus/ieee488/c8050.cpp
index 81f64c271f0..367c4299857 100644
--- a/src/devices/bus/ieee488/c8050.cpp
+++ b/src/devices/bus/ieee488/c8050.cpp
@@ -257,7 +257,7 @@ void c8050_device::sfd1001_fdc_mem(address_map &map)
// riot6532 uc1
//-------------------------------------------------
-READ8_MEMBER( c8050_device::dio_r )
+uint8_t c8050_device::dio_r()
{
/*
@@ -277,7 +277,7 @@ READ8_MEMBER( c8050_device::dio_r )
return m_bus->dio_r();
}
-WRITE8_MEMBER( c8050_device::dio_w )
+void c8050_device::dio_w(uint8_t data)
{
/*
@@ -301,7 +301,7 @@ WRITE8_MEMBER( c8050_device::dio_w )
// riot6532 ue1
//-------------------------------------------------
-READ8_MEMBER( c8050_device::riot1_pa_r )
+uint8_t c8050_device::riot1_pa_r()
{
/*
@@ -332,7 +332,7 @@ READ8_MEMBER( c8050_device::riot1_pa_r )
return data;
}
-WRITE8_MEMBER( c8050_device::riot1_pa_w )
+void c8050_device::riot1_pa_w(uint8_t data)
{
/*
@@ -367,7 +367,7 @@ WRITE8_MEMBER( c8050_device::riot1_pa_w )
update_ieee_signals();
}
-READ8_MEMBER( c8050_device::riot1_pb_r )
+uint8_t c8050_device::riot1_pb_r()
{
/*
@@ -398,7 +398,7 @@ READ8_MEMBER( c8050_device::riot1_pb_r )
return data;
}
-WRITE8_MEMBER( c8050_device::riot1_pb_w )
+void c8050_device::riot1_pb_w(uint8_t data)
{
/*
@@ -425,7 +425,7 @@ WRITE8_MEMBER( c8050_device::riot1_pb_w )
m_leds[LED_ERR] = BIT(data, 5);
}
-WRITE8_MEMBER( c8050_device::via_pb_w )
+void c8050_device::via_pb_w(uint8_t data)
{
/*