summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/s2636.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/s2636.cpp')
-rw-r--r--src/devices/machine/s2636.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/s2636.cpp b/src/devices/machine/s2636.cpp
index 3d29e76b099..ddc46adf81c 100644
--- a/src/devices/machine/s2636.cpp
+++ b/src/devices/machine/s2636.cpp
@@ -405,7 +405,7 @@ void s2636_device::render_next_line()
// bus access handlers
//-------------------------------------------------
-READ8_MEMBER( s2636_device::read_data )
+uint8_t s2636_device::read_data(offs_t offset)
{
mask_offset(offset);
uint8_t data = m_registers[offset];
@@ -424,7 +424,7 @@ READ8_MEMBER( s2636_device::read_data )
return data;
}
-WRITE8_MEMBER( s2636_device::write_data )
+void s2636_device::write_data(offs_t offset, uint8_t data)
{
mask_offset(offset);
@@ -434,7 +434,7 @@ WRITE8_MEMBER( s2636_device::write_data )
m_registers[offset] = data;
}
-WRITE_LINE_MEMBER( s2636_device::write_intack )
+void s2636_device::write_intack(int state)
{
assert((ASSERT_LINE == state) || (HOLD_LINE == state) || (CLEAR_LINE == state));