/* reset */ void YM2610_sh_reset(void) { int i; for (i = 0;i < intf->num;i++) YM2610ResetChip(i); }
void BurnYM2610Reset() { #if defined FBA_DEBUG if (!DebugSnd_YM2610Initted) bprintf(PRINT_ERROR, _T("BurnYM2610Reset called without init\n")); #endif BurnTimerReset(); YM2610ResetChip(0); }
static void ym2610_reset(void *token) { struct ym2610_info *info = token; YM2610ResetChip(info->chip); }