Example #1
0
/* Timer overflow callback from timer.c */
static void timer_callback_2610(int param)
{
	int n=param&0x7f;
	int c=param>>7;

//	logerror("2610 TimerOver %d\n",c);
	YM2610TimerOver(n,c);
}
Example #2
0
/* Timer overflow callback from timer.c */
static void timer_callback_2610(int param)
{
	int n=param&0x7f;
	int c=param>>7;

//	if(errorlog) fprintf(errorlog,"2610 TimerOver %d\n",c);
	Timer[n][c] = 0;
	YM2610TimerOver(n,c);
}
Example #3
0
static void timer_callback_1(void *param)
{
	struct ym2610_info *info = param;
	YM2610TimerOver(info->chip,1);
}
Example #4
0
/*-------------------------------------------------------------------------

	YM2610 timer callback.

	Input:	Timer		Pointer to the timer that triggered the callback.
			Data		Data associated with the timer.

---------------------------------------------------------------------------*/
void neogeo_ym2610_timer_callback ( TIMER *Timer, Uint32 Data )
{
	YM2610TimerOver ( Data );
}