summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/h83002/h8periph.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/cpu/h83002/h8periph.c')
-rw-r--r--src/emu/cpu/h83002/h8periph.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/emu/cpu/h83002/h8periph.c b/src/emu/cpu/h83002/h8periph.c
index 603434a0ba0..fffd009c273 100644
--- a/src/emu/cpu/h83002/h8periph.c
+++ b/src/emu/cpu/h83002/h8periph.c
@@ -486,11 +486,11 @@ void h8_register_write8(UINT32 address, UINT8 val)
void h8_itu_init(void)
{
- h8.timer[0] = timer_alloc(h8itu_timer_0_cb);
- h8.timer[1] = timer_alloc(h8itu_timer_1_cb);
- h8.timer[2] = timer_alloc(h8itu_timer_2_cb);
- h8.timer[3] = timer_alloc(h8itu_timer_3_cb);
- h8.timer[4] = timer_alloc(h8itu_timer_4_cb);
+ h8.timer[0] = timer_alloc(h8itu_timer_0_cb, NULL);
+ h8.timer[1] = timer_alloc(h8itu_timer_1_cb, NULL);
+ h8.timer[2] = timer_alloc(h8itu_timer_2_cb, NULL);
+ h8.timer[3] = timer_alloc(h8itu_timer_3_cb, NULL);
+ h8.timer[4] = timer_alloc(h8itu_timer_4_cb, NULL);
h8_itu_reset();