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/enmirage.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/enmirage.cpp')
-rw-r--r-- | src/mame/drivers/enmirage.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/enmirage.cpp b/src/mame/drivers/enmirage.cpp index 4c1bd9d4873..d299c13dc17 100644 --- a/src/mame/drivers/enmirage.cpp +++ b/src/mame/drivers/enmirage.cpp @@ -57,8 +57,8 @@ class enmirage_state : public driver_device { public: - enmirage_state(const machine_config &mconfig, device_type type, const char *tag) - : driver_device(mconfig, type, tag), + enmirage_state(const machine_config &mconfig, device_type type, const char *tag) : + driver_device(mconfig, type, tag), m_maincpu(*this, "maincpu"), m_fdc(*this, "wd1772"), m_floppy_connector(*this, "wd1772:0"), @@ -224,7 +224,7 @@ MACHINE_CONFIG_START(enmirage_state::mirage) MCFG_DEVICE_ADD("maincpu", MC6809E, 2000000) MCFG_DEVICE_PROGRAM_MAP(mirage_map) - MCFG_DEFAULT_LAYOUT( layout_mirage ) + config.set_default_layout(layout_mirage); SPEAKER(config, "lspeaker").front_left(); SPEAKER(config, "rspeaker").front_right(); |