summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus
diff options
context:
space:
mode:
author mooglyguy <therealmogminer@gmail.com>2018-06-22 12:38:53 +0200
committer mooglyguy <therealmogminer@gmail.com>2018-06-22 12:38:53 +0200
commitc57fd92645631873f747dcc609c2c1975ff05985 (patch)
tree741ecbff7a9763576420bb24e9b5225516d98dd6 /src/devices/bus
parente86ab5bd4dd788eec982e2cfad3a0082071f8631 (diff)
hd63450, genvdp, munchmo, esq5505, multigam: Remove machine().device lookups, nw
Diffstat (limited to 'src/devices/bus')
-rw-r--r--src/devices/bus/vme/vme_fcscsi.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/devices/bus/vme/vme_fcscsi.cpp b/src/devices/bus/vme/vme_fcscsi.cpp
index b726d10ea34..8264dcaf47a 100644
--- a/src/devices/bus/vme/vme_fcscsi.cpp
+++ b/src/devices/bus/vme/vme_fcscsi.cpp
@@ -248,8 +248,7 @@ MACHINE_CONFIG_START(vme_fcscsi1_card_device::device_add_mconfig)
MCFG_PIT68230_PB_OUTPUT_CB(WRITE8(*this, vme_fcscsi1_card_device, led_w))
/* DMAC it is really a M68450 but the HD63850 is upwards compatible */
- MCFG_DEVICE_ADD("mc68450", HD63450, 0) // MC68450 compatible
- MCFG_HD63450_CPU("maincpu") // CPU - 68010
+ MCFG_DEVICE_ADD("mc68450", HD63450, "maincpu") // MC68450 compatible
MCFG_HD63450_CLOCKS(attotime::from_usec(32), attotime::from_nsec(450), attotime::from_usec(4), attotime::from_hz(15625/2))
MCFG_HD63450_BURST_CLOCKS(attotime::from_usec(32), attotime::from_nsec(450), attotime::from_nsec(50), attotime::from_nsec(50))
MCFG_HD63450_DMA_END_CB(WRITE8(*this, vme_fcscsi1_card_device, dma_end))