diff options
author | 2018-12-13 18:43:59 -0500 | |
---|---|---|
committer | 2018-12-13 18:46:32 -0500 | |
commit | 0e6b9d138058731f3c2037170cee046594f67684 (patch) | |
tree | 2f614ab16951eedfd373067fad68bb35f016d776 /src/mame/drivers/tandy2k.cpp | |
parent | cefe336561eca14680e6b0e092fbe8c929e06a27 (diff) |
upd765: Add (mostly standard) clocks to all devices in the family (nw)
These clocks are currently unused, and their sources and dividers are often unclear. In some cases they are clearly software-configurable, which has not been emulated at all.
Diffstat (limited to 'src/mame/drivers/tandy2k.cpp')
-rw-r--r-- | src/mame/drivers/tandy2k.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/tandy2k.cpp b/src/mame/drivers/tandy2k.cpp index 52c3be8cbf7..79019164e21 100644 --- a/src/mame/drivers/tandy2k.cpp +++ b/src/mame/drivers/tandy2k.cpp @@ -851,7 +851,7 @@ MACHINE_CONFIG_START(tandy2k_state::tandy2k) PIC8259(config, m_pic1, 0); m_pic1->out_int_callback().set(m_maincpu, FUNC(i80186_cpu_device::int1_w)); - I8272A(config, m_fdc, true); + I8272A(config, m_fdc, 16_MHz_XTAL / 4, true); m_fdc->set_select_lines_connected(true); m_fdc->intrq_wr_callback().set(m_pic0, FUNC(pic8259_device::ir4_w)); m_fdc->drq_wr_callback().set(FUNC(tandy2k_state::fdc_drq_w)); |