diff options
Diffstat (limited to 'src/mame/drivers/redclash.cpp')
-rw-r--r-- | src/mame/drivers/redclash.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/redclash.cpp b/src/mame/drivers/redclash.cpp index 0a611f72c44..8a60bc44ee2 100644 --- a/src/mame/drivers/redclash.cpp +++ b/src/mame/drivers/redclash.cpp @@ -31,12 +31,12 @@ TODO: #include "speaker.h" -WRITE8_MEMBER( redclash_state::irqack_w ) +void redclash_state::irqack_w(uint8_t data) { m_maincpu->set_input_line(0, CLEAR_LINE); } -template <unsigned B> WRITE8_MEMBER(redclash_state::star_w) +template <unsigned B> void redclash_state::star_w(uint8_t data) { m_stars->set_speed(BIT(data, 0) << B, 1U << B); } |