Ejemplo n.º 1
0
//static DEVICE_RESET( ym2203 )
void device_reset_ym2203(UINT8 ChipID)
{
	//ym2203_state *info = get_safe_token(device);
	ym2203_state *info = &YM2203Data[ChipID];
	ym2203_reset_chip(info->chip);	// also resets the AY clock
	//psg_reset(info);	// already done as a callback in ym2203_reset_chip
}
Ejemplo n.º 2
0
static DEVICE_RESET( ym2203 )
{
	ym2203_state *info = get_safe_token(device);
	ym2203_reset_chip(info->chip);
}
Ejemplo n.º 3
0
void ym2203_device::device_reset()
{
	ym2203_reset_chip(m_chip);
}