summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/pc1403.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/pc1403.cpp')
-rw-r--r--src/mame/machine/pc1403.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/pc1403.cpp b/src/mame/machine/pc1403.cpp
index 36cb2b0eaaa..358296b74cd 100644
--- a/src/mame/machine/pc1403.cpp
+++ b/src/mame/machine/pc1403.cpp
@@ -56,7 +56,7 @@ READ8_MEMBER(pc1403_state::asic_read)
return data;
}
-READ8_MEMBER(pc1403_state::in_a_r)
+uint8_t pc1403_state::in_a_r()
{
uint8_t data = m_outa;
@@ -80,7 +80,7 @@ READ8_MEMBER(pc1403_state::in_a_r)
return data;
}
-WRITE8_MEMBER(pc1403_state::out_c_w)
+void pc1403_state::out_c_w(uint8_t data)
{
m_portc = data;
}