Esempio n. 1
0
uint16_t m68340cpu_device::get_cs(offs_t address)
{
	m68340_currentcs = m68340_calc_cs(this, address);

	return m68340_currentcs;
}
Esempio n. 2
0
UINT16 m68340_get_cs(m68340cpu_device *device, offs_t address)
{
	device->m68340_currentcs = m68340_calc_cs(device, address);

	return device->m68340_currentcs;
}