summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/psx.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/psx.c')
-rw-r--r--src/mame/machine/psx.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/machine/psx.c b/src/mame/machine/psx.c
index 3bb6d93f993..be4ffe996b3 100644
--- a/src/mame/machine/psx.c
+++ b/src/mame/machine/psx.c
@@ -1563,19 +1563,19 @@ void psx_driver_init( void )
for( n = 0; n < 7; n++ )
{
- m_p_timer_dma[ n ] = timer_alloc( dma_finished_callback );
+ m_p_timer_dma[ n ] = timer_alloc( dma_finished_callback , NULL);
m_p_fn_dma_read[ n ] = NULL;
m_p_fn_dma_write[ n ] = NULL;
}
for( n = 0; n < 3; n++ )
{
- m_p_timer_root[ n ] = timer_alloc( root_finished );
+ m_p_timer_root[ n ] = timer_alloc( root_finished , NULL);
}
for( n = 0; n < 2; n++ )
{
- m_p_timer_sio[ n ] = timer_alloc( sio_clock );
+ m_p_timer_sio[ n ] = timer_alloc( sio_clock , NULL);
}
for( n = 0; n < 256; n++ )