diff options
author | 2021-06-21 13:53:49 -0700 | |
---|---|---|
committer | 2021-06-21 13:53:49 -0700 | |
commit | 32dbba7d2d4513774b2d877b4c88f2d0760bcf54 (patch) | |
tree | f9e6426cf8dc28413c456bdbcd450c85cb302422 /src/devices/bus/vic10/exp.cpp | |
parent | 5522729235b3ce81c839f3932c1aadc14de59e2b (diff) | |
parent | 2709c0143a8c7009715242c135b28403eeffce8b (diff) |
Merge branch 'master' into deprecateddeprecated
Diffstat (limited to 'src/devices/bus/vic10/exp.cpp')
-rw-r--r-- | src/devices/bus/vic10/exp.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/devices/bus/vic10/exp.cpp b/src/devices/bus/vic10/exp.cpp index a678a2624c3..48f42ad73c1 100644 --- a/src/devices/bus/vic10/exp.cpp +++ b/src/devices/bus/vic10/exp.cpp @@ -79,15 +79,6 @@ void vic10_expansion_slot_device::device_start() m_write_res.resolve_safe(); m_write_cnt.resolve_safe(); m_write_sp.resolve_safe(); - - // inherit bus clock - // FIXME: this should be unnecessary as slots pass DERIVED_CLOCK(1, 1) through by default - if (clock() == 0) - { - vic10_expansion_slot_device *root = machine().root_device().subdevice<vic10_expansion_slot_device>(VIC10_EXPANSION_SLOT_TAG); - assert(root); - set_unscaled_clock(root->clock()); - } } |