コード例 #1
0
ファイル: 262intf.c プロジェクト: enver-haase/PinMAME-jsm174
/* reset */
void YMF262_sh_reset(void)
{
	int i;

	for (i = 0;i < intf_262->num;i++)
		YMF262ResetChip(i);
}
コード例 #2
0
ファイル: adlib.c プロジェクト: ErisBlastar/osfree
void adlib_reset(void)
{
    opl3_timers[0] = opl3_timers[1] = 0;
    adlib_time_cur = adlib_time_last = 0;
#ifdef HAS_YMF262
    YMF262ResetChip(opl3);
#endif
}
コード例 #3
0
ファイル: 262intf.c プロジェクト: broftkd/mess-cvs
/* reset */
static void ymf262_reset(void *token)
{
	struct ymf262_info *info = token;
	YMF262ResetChip(info->chip);
}