diff options
author | 2019-07-02 20:30:21 +0200 | |
---|---|---|
committer | 2019-07-02 20:30:37 +0200 | |
commit | b6ce2e16d867b21119ce36f6e108d0866f396089 (patch) | |
tree | 16c3b1bfd5d9011b366ded7f10baef32c440651c /src/mame/drivers/atlantis.cpp | |
parent | 0b8733206a1f6d3c931171c18f2200b2eb5a2b87 (diff) |
-core: Removed almost all MCFG defines, and removed all remaining MACHINE_CONFIG_START/END uses. [Ryan Holtz]
Diffstat (limited to 'src/mame/drivers/atlantis.cpp')
-rw-r--r-- | src/mame/drivers/atlantis.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/atlantis.cpp b/src/mame/drivers/atlantis.cpp index 87d344b0d0d..ae666dd55a2 100644 --- a/src/mame/drivers/atlantis.cpp +++ b/src/mame/drivers/atlantis.cpp @@ -883,7 +883,7 @@ void atlantis_state::mwskins(machine_config &config) com1.dsr_handler().set(m_uart1, FUNC(ins8250_uart_device::dsr_w)); com1.ri_handler().set(m_uart1, FUNC(ins8250_uart_device::ri_w)); com1.cts_handler().set(m_uart1, FUNC(ins8250_uart_device::cts_w)); - //MCFG_SLOT_OPTION_DEVICE_INPUT_DEFAULTS("com1", mwskins_comm) + //com1.set_option_device_input_defaults("com1", DEVICE_INPUT_DEFAULTS_NAME(mwskins_comm)); rs232_port_device &com2(RS232_PORT(config, "com2", default_rs232_devices, nullptr)); com2.rxd_handler().set(m_uart2, FUNC(ins8250_uart_device::rx_w)); |