summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/gamecom.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/gamecom.cpp')
-rw-r--r--src/mame/machine/gamecom.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/machine/gamecom.cpp b/src/mame/machine/gamecom.cpp
index 85dfe5e1588..2116ca64a29 100644
--- a/src/mame/machine/gamecom.cpp
+++ b/src/mame/machine/gamecom.cpp
@@ -202,7 +202,7 @@ void gamecom_state::handle_input_press(uint16_t mux_data)
}
}
-WRITE8_MEMBER( gamecom_state::gamecom_pio_w )
+void gamecom_state::gamecom_pio_w(offs_t offset, uint8_t data)
{
offset += 0x14;
m_p_ram[offset] = data;
@@ -225,12 +225,12 @@ WRITE8_MEMBER( gamecom_state::gamecom_pio_w )
}
}
-READ8_MEMBER( gamecom_state::gamecom_pio_r )
+uint8_t gamecom_state::gamecom_pio_r(offs_t offset)
{
return m_p_ram[offset + 0x14];
}
-READ8_MEMBER( gamecom_state::gamecom_internal_r )
+uint8_t gamecom_state::gamecom_internal_r(offs_t offset)
{
return m_p_ram[offset + 0x20];
}
@@ -265,7 +265,7 @@ void gamecom_state::recompute_lcd_params()
m_screen->configure(hblank_period, vblank_period, visarea, refresh);
}
-WRITE8_MEMBER( gamecom_state::gamecom_internal_w )
+void gamecom_state::gamecom_internal_w(offs_t offset, uint8_t data)
{
offset += 0x20;
switch( offset )