mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
pcw16: make it work when first starting too (nw)
This commit is contained in:
parent
899ee187b2
commit
affc880caf
2 changed files with 3 additions and 0 deletions
|
@ -976,6 +976,7 @@ void pcw16_state::machine_reset()
|
|||
m_rtc_256ths_seconds = 0;
|
||||
|
||||
pcw16_keyboard_init();
|
||||
m_uart2->ri_w(0);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -40,6 +40,7 @@ public:
|
|||
m_flash0(*this, "flash0"),
|
||||
m_flash1(*this, "flash1"),
|
||||
m_fdc(*this, "fdc"),
|
||||
m_uart2(*this, "ns16550_2"),
|
||||
m_beeper(*this, "beeper"),
|
||||
m_ram(*this, RAM_TAG),
|
||||
m_keyboard(*this, "at_keyboard"),
|
||||
|
@ -51,6 +52,7 @@ public:
|
|||
required_device<intel_e28f008sa_device> m_flash0;
|
||||
required_device<intel_e28f008sa_device> m_flash1;
|
||||
required_device<pc_fdc_superio_device> m_fdc;
|
||||
required_device<ns16550_device> m_uart2;
|
||||
required_device<beep_device> m_beeper;
|
||||
required_device<ram_device> m_ram;
|
||||
required_device<at_keyboard_device> m_keyboard;
|
||||
|
|
Loading…
Reference in a new issue