summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/llc.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/llc.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/llc.cpp')
-rw-r--r--src/mame/drivers/llc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/llc.cpp b/src/mame/drivers/llc.cpp
index 183496a535c..a5f300c6fd1 100644
--- a/src/mame/drivers/llc.cpp
+++ b/src/mame/drivers/llc.cpp
@@ -197,7 +197,7 @@ GFXDECODE_END
static MACHINE_CONFIG_START( llc1, llc_state )
/* basic machine hardware */
MCFG_CPU_ADD("maincpu", Z80, XTAL_3MHz)
- MCFG_CPU_CONFIG(llc1_daisy_chain)
+ MCFG_Z80_DAISY_CHAIN(llc1_daisy_chain)
MCFG_CPU_PROGRAM_MAP(llc1_mem)
MCFG_CPU_IO_MAP(llc1_io)
@@ -241,7 +241,7 @@ MACHINE_CONFIG_END
static MACHINE_CONFIG_START( llc2, llc_state )
/* basic machine hardware */
MCFG_CPU_ADD("maincpu", Z80, XTAL_3MHz)
- MCFG_CPU_CONFIG(llc2_daisy_chain)
+ MCFG_Z80_DAISY_CHAIN(llc2_daisy_chain)
MCFG_CPU_PROGRAM_MAP(llc2_mem)
MCFG_CPU_IO_MAP(llc2_io)