Example #1
0
//static DEVICE_RESET( ym2610 )
void device_reset_ym2610(void *_info)
{
	//ym2610_state *info = get_safe_token(device);
	ym2610_state* info = (ym2610_state *)_info;
	ym2610_reset_chip(info->chip);	// also resets the AY clock
	//psg_reset(info);	// already done as a callback in ym2610_reset_chip
}
Example #2
0
//static DEVICE_RESET( ym2610 )
void device_reset_ym2610(UINT8 ChipID)
{
    //ym2610_state *info = get_safe_token(device);
    ym2610_state* info = &YM2610Data[ChipID];
    ym2610_reset_chip(info->chip);	// also resets the AY clock
    //psg_reset(info);	// already done as a callback in ym2610_reset_chip
}
Example #3
0
void ym2610_device::device_reset()
{
	ym2610_reset_chip(m_chip);
}
Example #4
0
static DEVICE_RESET( ym2610 )
{
	ym2610_state *info = get_safe_token(device);
	ym2610_reset_chip(info->chip);
}