summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/beathead.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/beathead.cpp')
-rw-r--r--src/mame/drivers/beathead.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/beathead.cpp b/src/mame/drivers/beathead.cpp
index bcb16369f56..142766c28d8 100644
--- a/src/mame/drivers/beathead.cpp
+++ b/src/mame/drivers/beathead.cpp
@@ -187,7 +187,7 @@ void beathead_state::update_interrupts()
}
-WRITE32_MEMBER( beathead_state::interrupt_control_w )
+void beathead_state::interrupt_control_w(offs_t offset, uint32_t data)
{
int irq = offset & 3;
int control = (offset >> 2) & 1;
@@ -205,7 +205,7 @@ WRITE32_MEMBER( beathead_state::interrupt_control_w )
}
-READ32_MEMBER( beathead_state::interrupt_control_r )
+uint32_t beathead_state::interrupt_control_r()
{
/* return the enables as a bitfield */
return (m_irq_enable[0]) | (m_irq_enable[1] << 1) | (m_irq_enable[2] << 2);
@@ -219,7 +219,7 @@ READ32_MEMBER( beathead_state::interrupt_control_r )
*
*************************************/
-WRITE32_MEMBER( beathead_state::sound_reset_w )
+void beathead_state::sound_reset_w(offs_t offset, uint32_t data)
{
logerror("Sound reset = %d\n", !offset);
m_jsa->soundcpu().set_input_line(INPUT_LINE_RESET, offset ? CLEAR_LINE : ASSERT_LINE);
@@ -233,7 +233,7 @@ WRITE32_MEMBER( beathead_state::sound_reset_w )
*
*************************************/
-WRITE32_MEMBER( beathead_state::coin_count_w )
+void beathead_state::coin_count_w(offs_t offset, uint32_t data)
{
machine().bookkeeping().coin_counter_w(0, !offset);
}