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

	Timer[n][c] = 0;
	YM2203TimerOver(n,c);
}
Beispiel #2
0
/* Timer overflow callback from timer.c */
static void timer_callback_2203(int refcon)
{
	int n, c, ref;

	ref = (int)refcon;
	n = ref>>8;
	c = ref&0xf;

	YM2203TimerOver(n,c);
}
Beispiel #3
0
static TIMER_CALLBACK( timer_callback_2203_1 )
{
	struct ym2203_info *info = ptr;
	YM2203TimerOver(info->chip,1);
}
static void timer_callback_2203_1(void *param)
{
	struct ym2203_info *info = param;
	YM2203TimerOver(info->chip,1);
}