diff options
author | 2018-12-13 18:43:59 -0500 | |
---|---|---|
committer | 2018-12-13 18:46:32 -0500 | |
commit | 0e6b9d138058731f3c2037170cee046594f67684 (patch) | |
tree | 2f614ab16951eedfd373067fad68bb35f016d776 /src/devices/bus/newbrain | |
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/devices/bus/newbrain')
-rw-r--r-- | src/devices/bus/newbrain/fdc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/newbrain/fdc.cpp b/src/devices/bus/newbrain/fdc.cpp index c3378dd5108..597def0509b 100644 --- a/src/devices/bus/newbrain/fdc.cpp +++ b/src/devices/bus/newbrain/fdc.cpp @@ -109,7 +109,7 @@ MACHINE_CONFIG_START(newbrain_fdc_device::device_add_mconfig) MCFG_DEVICE_PROGRAM_MAP(newbrain_fdc_mem) MCFG_DEVICE_IO_MAP(newbrain_fdc_io) - UPD765A(config, m_fdc, false, true); + UPD765A(config, m_fdc, 8'000'000, false, true); m_fdc->intrq_wr_callback().set(FUNC(newbrain_fdc_device::fdc_int_w)); MCFG_FLOPPY_DRIVE_ADD(UPD765_TAG ":0", newbrain_floppies, "525dd", floppy_image_device::default_floppy_formats) |