summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/coolpool.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/coolpool.c')
-rw-r--r--src/mame/drivers/coolpool.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/coolpool.c b/src/mame/drivers/coolpool.c
index ac9dd25c623..bd4258188f3 100644
--- a/src/mame/drivers/coolpool.c
+++ b/src/mame/drivers/coolpool.c
@@ -146,7 +146,7 @@ static void coolpool_from_shiftreg(UINT32 address, UINT16 *shiftreg)
static MACHINE_RESET( amerdart )
{
nvram_write_enable = 0;
- nvram_write_timer = timer_alloc(nvram_write_timeout);
+ nvram_write_timer = timer_alloc(nvram_write_timeout, NULL);
}
@@ -154,7 +154,7 @@ static MACHINE_RESET( coolpool )
{
tlc34076_reset(6);
nvram_write_enable = 0;
- nvram_write_timer = timer_alloc(nvram_write_timeout);
+ nvram_write_timer = timer_alloc(nvram_write_timeout, NULL);
}
@@ -277,7 +277,7 @@ static WRITE16_HANDLER( amerdart_iop_w )
{
logerror("%08x:IOP write %04x\n", activecpu_get_pc(), data);
COMBINE_DATA(&iop_cmd);
- timer_set(ATTOTIME_IN_USEC(100), 0, amerdart_iop_response);
+ timer_set(ATTOTIME_IN_USEC(100), NULL, 0, amerdart_iop_response);
}
@@ -321,7 +321,7 @@ static TIMER_CALLBACK( deferred_iop_w )
static WRITE16_HANDLER( coolpool_iop_w )
{
logerror("%08x:IOP write %04x\n", activecpu_get_pc(), data);
- timer_call_after_resynch(data, deferred_iop_w);
+ timer_call_after_resynch(NULL, data, deferred_iop_w);
}