summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/mhavoc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/mhavoc.c')
-rw-r--r--src/mame/machine/mhavoc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/machine/mhavoc.c b/src/mame/machine/mhavoc.c
index 8c15c0665ba..cdd1c596d2d 100644
--- a/src/mame/machine/mhavoc.c
+++ b/src/mame/machine/mhavoc.c
@@ -113,7 +113,7 @@ MACHINE_RESET( mhavoc )
gamma_irq_clock = 0;
/* set a timer going for the CPU interrupt generators */
- timer_pulse(ATTOTIME_IN_HZ(MHAVOC_CLOCK_5K), 0, cpu_irq_clock);
+ timer_pulse(ATTOTIME_IN_HZ(MHAVOC_CLOCK_5K), NULL, 0, cpu_irq_clock);
state_save_register_item("misc", 0, alpha_data);
state_save_register_item("misc", 0, alpha_rcvd);
@@ -146,14 +146,14 @@ static TIMER_CALLBACK( delayed_gamma_w )
cpunum_set_input_line(1, INPUT_LINE_NMI, PULSE_LINE);
/* the sound CPU needs to reply in 250microseconds (according to Neil Bradley) */
- timer_set(ATTOTIME_IN_USEC(250), 0, 0);
+ timer_set(ATTOTIME_IN_USEC(250), NULL, 0, 0);
}
WRITE8_HANDLER( mhavoc_gamma_w )
{
logerror(" writing to gamma processor: %02x (%d %d)\n", data, gamma_rcvd, alpha_xmtd);
- timer_call_after_resynch(data, delayed_gamma_w);
+ timer_call_after_resynch(NULL, data, delayed_gamma_w);
}