diff options
author | 2019-02-03 10:15:57 -0500 | |
---|---|---|
committer | 2019-02-03 10:15:57 -0500 | |
commit | b6fb151b5e66fe7cb5692cd6012bbc4af3eeadbb (patch) | |
tree | c35009547dc22ab204784604f8be13598785cc50 /src/devices | |
parent | 5e0f160b684eadddb7ac1c7f47cb2d7f7cf16525 (diff) |
Provide 1 MHz clock for uPD7002 (nw)
Diffstat (limited to 'src/devices')
-rw-r--r-- | src/devices/bus/bbc/exp/mertec.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/bbc/exp/mertec.cpp b/src/devices/bus/bbc/exp/mertec.cpp index 8f896da0359..3c8a110707a 100644 --- a/src/devices/bus/bbc/exp/mertec.cpp +++ b/src/devices/bus/bbc/exp/mertec.cpp @@ -52,7 +52,7 @@ void bbc_mertec_device::device_add_mconfig(machine_config &config) //m_pia->irq_handler().set("irqs", FUNC(input_merger_device::in_w<0>)); /* adc */ - UPD7002(config, m_upd7002, 0); + UPD7002(config, m_upd7002, DERIVED_CLOCK(1, 8)); m_upd7002->set_get_analogue_callback(FUNC(bbc_mertec_device::get_analogue_input), this); m_upd7002->set_eoc_callback(FUNC(bbc_mertec_device::upd7002_eoc), this); |