Ejemplo n.º 1
0
void ibm_pc_at_84_keyboard_device::device_start()
{
	set_pc_kbdc_device();

	// state saving
	save_item(NAME(m_db));
	save_item(NAME(m_cnt));
	save_item(NAME(m_sense));
	save_item(NAME(m_t1));
}
Ejemplo n.º 2
0
//-------------------------------------------------
//  device_start - device-specific startup
//-------------------------------------------------
void pc_kbd_microsoft_natural_device::device_start()
{
	set_pc_kbdc_device();

	/* setup savestates */
	save_item(NAME(m_p0));
	save_item(NAME(m_p1));
	save_item(NAME(m_p2));
	save_item(NAME(m_p3));
}
Ejemplo n.º 3
0
void ec_1841_keyboard_device::device_start()
{
	set_pc_kbdc_device();

	// state saving
	save_item(NAME(m_bus));
	save_item(NAME(m_p1));
	save_item(NAME(m_p2));
	save_item(NAME(m_q));
}
Ejemplo n.º 4
0
void ibm_pc_xt_83_keyboard_device::device_start()
{
	set_pc_kbdc_device();

	// state saving
	save_item(NAME(m_bus));
	save_item(NAME(m_p1));
	save_item(NAME(m_p2));
	save_item(NAME(m_sense));
	save_item(NAME(m_q));
}
Ejemplo n.º 5
0
//-------------------------------------------------
//  device_start - device-specific startup
//-------------------------------------------------
void pc_kbd_keytronic_pc3270_device::device_start()
{
	set_pc_kbdc_device();

	/* setup savestates */
	save_item(NAME(m_p1));
	save_item(NAME(m_p1_data));
	save_item(NAME(m_p2));
	save_item(NAME(m_p3));
	save_item(NAME(m_last_write_addr));
}
Ejemplo n.º 6
0
void iskr_1030_keyboard_device::device_start()
{
	set_pc_kbdc_device();

	m_ram.resize(0x100);
	save_item(NAME(m_ram));

	save_item(NAME(m_bus));
	save_item(NAME(m_p1));
	save_item(NAME(m_p2));
	save_item(NAME(m_q));
}
Ejemplo n.º 7
0
void ibm_pc_at_101_keyboard_device::device_start()
{
	set_pc_kbdc_device();

	m_leds.resolve();
}