summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/mupid2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/mupid2.cpp')
-rw-r--r--src/mame/drivers/mupid2.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/drivers/mupid2.cpp b/src/mame/drivers/mupid2.cpp
index 8697a0435d1..7dbcff55c32 100644
--- a/src/mame/drivers/mupid2.cpp
+++ b/src/mame/drivers/mupid2.cpp
@@ -48,9 +48,9 @@ protected:
private:
TIMER_DEVICE_CALLBACK_MEMBER(nmi);
- DECLARE_WRITE8_MEMBER(port_a0_w);
- DECLARE_WRITE8_MEMBER(port_c0_w);
- template<int C> DECLARE_WRITE8_MEMBER(palette_w);
+ void port_a0_w(uint8_t data);
+ void port_c0_w(uint8_t data);
+ template<int C> void palette_w(uint8_t data);
uint8_t kbd_bus_r();
uint8_t kbd_p1_r();
void kbd_p1_w(uint8_t data);
@@ -150,7 +150,7 @@ void mupid2_state::palette_init(palette_device &palette)
}
template<int C>
-WRITE8_MEMBER(mupid2_state::palette_w)
+void mupid2_state::palette_w(uint8_t data)
{
int i = data & 0x0f;
m_color_ram[i][C] = data >> 4;
@@ -190,7 +190,7 @@ TIMER_DEVICE_CALLBACK_MEMBER(mupid2_state::nmi)
m_maincpu->pulse_input_line(INPUT_LINE_NMI, attotime::zero);
}
-WRITE8_MEMBER(mupid2_state::port_a0_w)
+void mupid2_state::port_a0_w(uint8_t data)
{
logerror("port_a0_w: %02x\n", data);
@@ -204,7 +204,7 @@ WRITE8_MEMBER(mupid2_state::port_a0_w)
// -------0 unknown
}
-WRITE8_MEMBER(mupid2_state::port_c0_w)
+void mupid2_state::port_c0_w(uint8_t data)
{
logerror("port_c0_w: %02x\n", data);