diff options
author | 2019-07-02 20:30:21 +0200 | |
---|---|---|
committer | 2019-07-02 20:30:37 +0200 | |
commit | b6ce2e16d867b21119ce36f6e108d0866f396089 (patch) | |
tree | 16c3b1bfd5d9011b366ded7f10baef32c440651c /src/mame/drivers/decstation.cpp | |
parent | 0b8733206a1f6d3c931171c18f2200b2eb5a2b87 (diff) |
-core: Removed almost all MCFG defines, and removed all remaining MACHINE_CONFIG_START/END uses. [Ryan Holtz]
Diffstat (limited to 'src/mame/drivers/decstation.cpp')
-rw-r--r-- | src/mame/drivers/decstation.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mame/drivers/decstation.cpp b/src/mame/drivers/decstation.cpp index 4d7d412e1a9..04623dfa6a4 100644 --- a/src/mame/drivers/decstation.cpp +++ b/src/mame/drivers/decstation.cpp @@ -531,9 +531,7 @@ void decstation_state::threemin_map(address_map &map) void decstation_state::ncr5394(device_t *device) { - devcb_base *devcb; - (void)devcb; - MCFG_DEVICE_CLOCK(10000000) + downcast<ncr53c94_device *>(device)->set_clock(10000000); } static void dec_scsi_devices(device_slot_interface &device) |