summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/m79152pc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/m79152pc.cpp')
-rw-r--r--src/mame/drivers/m79152pc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/m79152pc.cpp b/src/mame/drivers/m79152pc.cpp
index c002c8dfb1b..dc6ecf88278 100644
--- a/src/mame/drivers/m79152pc.cpp
+++ b/src/mame/drivers/m79152pc.cpp
@@ -57,7 +57,7 @@ protected:
virtual void machine_start() override;
private:
- DECLARE_WRITE8_MEMBER(beep_w);
+ void beep_w(offs_t offset, uint8_t data);
DECLARE_WRITE_LINE_MEMBER(latch_full_w);
DECLARE_READ_LINE_MEMBER(mcu_t0_r);
DECLARE_READ_LINE_MEMBER(mcu_t1_r);
@@ -96,7 +96,7 @@ private:
emu_timer *m_hsync_off_timer;
};
-WRITE8_MEMBER(m79152pc_state::beep_w)
+void m79152pc_state::beep_w(offs_t offset, uint8_t data)
{
m_beep->set_state(BIT(offset, 2));
}