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/chessmst.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/chessmst.cpp')
-rw-r--r-- | src/mame/drivers/chessmst.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/chessmst.cpp b/src/mame/drivers/chessmst.cpp index b451969152b..1876b061339 100644 --- a/src/mame/drivers/chessmst.cpp +++ b/src/mame/drivers/chessmst.cpp @@ -395,7 +395,7 @@ MACHINE_CONFIG_START(chessmst_state::chessmst) MCFG_Z80PIO_IN_PA_CB(READ8(*this, chessmst_state, pio2_port_a_r)) MCFG_Z80PIO_OUT_PB_CB(WRITE8(*this, chessmst_state, pio2_port_b_w)) - MCFG_DEFAULT_LAYOUT(layout_chessmst) + config.set_default_layout(layout_chessmst); /* sound hardware */ SPEAKER(config, "mono").front_center(); @@ -420,7 +420,7 @@ MACHINE_CONFIG_START(chessmst_state::chessmsta) MCFG_Z80PIO_IN_PA_CB(READ8(*this, chessmst_state, pio2_port_a_r)) MCFG_Z80PIO_OUT_PB_CB(WRITE8(*this, chessmst_state, pio2_port_b_w)) - MCFG_DEFAULT_LAYOUT(layout_chessmst) + config.set_default_layout(layout_chessmst); /* sound hardware */ SPEAKER(config, "mono").front_center(); @@ -446,7 +446,7 @@ MACHINE_CONFIG_START(chessmst_state::chessmstdm) MCFG_Z80PIO_IN_PA_CB(READ8(*this, chessmst_state, pio2_port_a_r)) MCFG_Z80PIO_OUT_PB_CB(WRITE8(*this, chessmst_state, pio2_port_b_w)) - MCFG_DEFAULT_LAYOUT(layout_chessmstdm) + config.set_default_layout(layout_chessmstdm); MCFG_DEVICE_ADD("555_timer", CLOCK, 500) // from 555 timer MCFG_CLOCK_SIGNAL_HANDLER(WRITELINE(*this, chessmst_state, timer_555_w)) |