diff options
author | 2018-07-16 16:26:01 +1000 | |
---|---|---|
committer | 2018-07-16 16:26:01 +1000 | |
commit | f18c7cd65ffdb0ac0b58907b79f9be86ee63f45e (patch) | |
tree | cb37881c15bbaf867a71a545c18776f6af57ce97 /src/mame/drivers/fidelz80.cpp | |
parent | 0e210f4347e1aa2c309dc918f927e05bbc228d15 (diff) |
Allow per-device internal layouts and remove some more MCFG_ macros.
Input and screen tags are now resolved relative to a layout's owner
device.
Easy way to demonstrate is with: mame64 intlc440 -tty ie15
Previously you'd only get the IE15 terminal's layout and you'd be unable
to use the INTELLEC 4/40 front panel. Now you'll get the choice of
layouts from both the system and the terminal device in video options.
Diffstat (limited to 'src/mame/drivers/fidelz80.cpp')
-rw-r--r-- | src/mame/drivers/fidelz80.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/drivers/fidelz80.cpp b/src/mame/drivers/fidelz80.cpp index 0335655277d..f0a02bbb372 100644 --- a/src/mame/drivers/fidelz80.cpp +++ b/src/mame/drivers/fidelz80.cpp @@ -1667,7 +1667,7 @@ MACHINE_CONFIG_START(fidelz80_state::bcc) MCFG_DEVICE_IO_MAP(bcc_io) MCFG_TIMER_DRIVER_ADD_PERIODIC("display_decay", fidelbase_state, display_decay_tick, attotime::from_msec(1)) - MCFG_DEFAULT_LAYOUT(layout_fidel_bcc) + config.set_default_layout(layout_fidel_bcc); /* sound hardware */ SPEAKER(config, "speaker").front_center(); @@ -1684,7 +1684,7 @@ MACHINE_CONFIG_START(fidelz80_state::scc) MCFG_DEVICE_IO_MAP(scc_io) MCFG_TIMER_DRIVER_ADD_PERIODIC("display_decay", fidelbase_state, display_decay_tick, attotime::from_msec(1)) - MCFG_DEFAULT_LAYOUT(layout_fidel_sc8) + config.set_default_layout(layout_fidel_sc8); /* sound hardware */ SPEAKER(config, "speaker").front_center(); @@ -1710,7 +1710,7 @@ MACHINE_CONFIG_START(fidelz80_state::cc10) MCFG_I8255_OUT_PORTC_CB(WRITE8(*this, fidelz80_state, vcc_ppi_portc_w)) MCFG_TIMER_DRIVER_ADD_PERIODIC("display_decay", fidelbase_state, display_decay_tick, attotime::from_msec(1)) - MCFG_DEFAULT_LAYOUT(layout_fidel_cc) + config.set_default_layout(layout_fidel_cc); /* sound hardware */ SPEAKER(config, "speaker").front_center(); @@ -1736,7 +1736,7 @@ MACHINE_CONFIG_START(fidelz80_state::vcc) MCFG_I8255_OUT_PORTC_CB(WRITE8(*this, fidelz80_state, vcc_ppi_portc_w)) MCFG_TIMER_DRIVER_ADD_PERIODIC("display_decay", fidelbase_state, display_decay_tick, attotime::from_msec(1)) - MCFG_DEFAULT_LAYOUT(layout_fidel_vcc) + config.set_default_layout(layout_fidel_vcc); MCFG_MACHINE_START_OVERRIDE(fidelz80_state,vcc) @@ -1766,7 +1766,7 @@ MACHINE_CONFIG_START(fidelz80_state::vsc) MCFG_Z80PIO_OUT_PB_CB(WRITE8(*this, fidelz80_state, vsc_pio_portb_w)) MCFG_TIMER_DRIVER_ADD_PERIODIC("display_decay", fidelbase_state, display_decay_tick, attotime::from_msec(1)) - MCFG_DEFAULT_LAYOUT(layout_fidel_vsc) + config.set_default_layout(layout_fidel_vsc); /* sound hardware */ SPEAKER(config, "speaker").front_center(); @@ -1794,7 +1794,7 @@ MACHINE_CONFIG_START(fidelz80_state::vbrc) MCFG_I8243_ADD("i8243", CONSTANT(0), WRITE8(*this, fidelz80_state, vbrc_ioexp_port_w)) MCFG_TIMER_DRIVER_ADD_PERIODIC("display_decay", fidelbase_state, display_decay_tick, attotime::from_msec(1)) - MCFG_DEFAULT_LAYOUT(layout_fidel_vbrc) + config.set_default_layout(layout_fidel_vbrc); /* sound hardware */ SPEAKER(config, "speaker").front_center(); @@ -1813,7 +1813,7 @@ MACHINE_CONFIG_START(fidelz80_state::dsc) MCFG_TIMER_DRIVER_ADD_PERIODIC("irq_off", fidelz80_state, irq_off, attotime::from_hz(523)) MCFG_TIMER_DRIVER_ADD_PERIODIC("display_decay", fidelbase_state, display_decay_tick, attotime::from_msec(1)) - MCFG_DEFAULT_LAYOUT(layout_fidel_dsc) + config.set_default_layout(layout_fidel_dsc); /* sound hardware */ SPEAKER(config, "speaker").front_center(); |