diff options
author | 2016-04-14 21:20:49 -0400 | |
---|---|---|
committer | 2016-04-14 21:20:49 -0400 | |
commit | 34be7d416603f0601877f208e6250dae416a92b2 (patch) | |
tree | 5e15f2cc717eaff6dbb28c9b94c6377c88d5c566 /src/devices/bus/wangpc/wdc.cpp | |
parent | b5486236918e8565b27e79a99d7c3112f6cff00e (diff) |
Eliminate device_t::static_config, a type-unsafe legacy feature.
Rewrite or remove every last instance of MCFG_DEVICE_CONFIG and its two aliases, including within comments and dead code.
Make the Z80/Z180 daisy chain an interface that interfaces with the existing interface. Z8000 has been hooked up to this as well (p8000_16 already configures it), but currently does nothing with it.
Diffstat (limited to 'src/devices/bus/wangpc/wdc.cpp')
-rw-r--r-- | src/devices/bus/wangpc/wdc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/wangpc/wdc.cpp b/src/devices/bus/wangpc/wdc.cpp index 7b2dafdd5f9..b4326319cf3 100644 --- a/src/devices/bus/wangpc/wdc.cpp +++ b/src/devices/bus/wangpc/wdc.cpp @@ -91,7 +91,7 @@ ADDRESS_MAP_END static MACHINE_CONFIG_FRAGMENT( wangpc_wdc ) MCFG_CPU_ADD(Z80_TAG, Z80, 2000000) // XTAL_10MHz / ? - //MCFG_CPU_CONFIG(wangpc_wdc_daisy_chain) + //MCFG_Z80_DAISY_CHAIN(wangpc_wdc_daisy_chain) MCFG_CPU_PROGRAM_MAP(wangpc_wdc_mem) MCFG_CPU_IO_MAP(wangpc_wdc_io) |