summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/m5.cpp
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2016-04-14 21:20:49 -0400
committer AJR <ajrhacker@users.noreply.github.com>2016-04-14 21:20:49 -0400
commit34be7d416603f0601877f208e6250dae416a92b2 (patch)
tree5e15f2cc717eaff6dbb28c9b94c6377c88d5c566 /src/mame/drivers/m5.cpp
parentb5486236918e8565b27e79a99d7c3112f6cff00e (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/mame/drivers/m5.cpp')
-rw-r--r--src/mame/drivers/m5.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/m5.cpp b/src/mame/drivers/m5.cpp
index 8344b68e9e3..5f2baad000a 100644
--- a/src/mame/drivers/m5.cpp
+++ b/src/mame/drivers/m5.cpp
@@ -1400,7 +1400,7 @@ static MACHINE_CONFIG_START( m5, m5_state )
MCFG_CPU_ADD(Z80_TAG, Z80, XTAL_14_31818MHz/4)
MCFG_CPU_PROGRAM_MAP(m5_mem)
MCFG_CPU_IO_MAP(m5_io)
- MCFG_CPU_CONFIG(m5_daisy_chain)
+ MCFG_Z80_DAISY_CHAIN(m5_daisy_chain)
MCFG_CPU_ADD(Z80_FD5_TAG, Z80, XTAL_14_31818MHz/4)
MCFG_CPU_PROGRAM_MAP(fd5_mem)
@@ -1492,7 +1492,7 @@ static MACHINE_CONFIG_DERIVED_CLASS( brno, m5, brno_state )
MCFG_CPU_MODIFY(Z80_TAG)
MCFG_CPU_PROGRAM_MAP(m5_mem_brno)
MCFG_CPU_IO_MAP(brno_io)
-// MCFG_CPU_CONFIG(m5_daisy_chain)
+// MCFG_Z80_DAISY_CHAIN(m5_daisy_chain)
//remove devices used for fd5 floppy