Пример #1
0
//static DEVICE_STOP( ymf262 )
void device_stop_ymf262(UINT8 ChipID)
{
	//ymf262_state *info = get_safe_token(device);
	ymf262_state *info = &YMF262Data[ChipID];
	switch(EMU_CORE)
	{
#ifdef ENABLE_ALL_CORES
	case EC_MAME:
		ymf262_shutdown(info->chip);
		break;
#endif
	case EC_DBOPL:
		adlib_OPL3_stop(info->chip);
		break;
	}
}
Пример #2
0
static DEVICE_STOP( ymf262 )
{
    ymf262_state *info = get_safe_token(device);
    ymf262_shutdown(info->chip);
}
Пример #3
0
void ymf262_device::device_stop()
{
	ymf262_shutdown(m_chip);
}