diff options
author | 2013-05-29 13:52:16 +0000 | |
---|---|---|
committer | 2013-05-29 13:52:16 +0000 | |
commit | 459b30be0f931ce0d9b26d929b4bd40608188fc5 (patch) | |
tree | eb75898a8d5a186c8d89c2a69bb52c5344402b8f /src/mess/drivers/ql.c | |
parent | f3c89aced23e12140b915172d38d8e841f0ae378 (diff) |
Moved default card config, device inputs and clock off the slot interface so they can be specified for all cards [smf]
Diffstat (limited to 'src/mess/drivers/ql.c')
-rw-r--r-- | src/mess/drivers/ql.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mess/drivers/ql.c b/src/mess/drivers/ql.c index f7431f46140..3149db92cb6 100644 --- a/src/mess/drivers/ql.c +++ b/src/mess/drivers/ql.c @@ -1032,8 +1032,8 @@ static MACHINE_CONFIG_START( ql, ql_state ) MCFG_WD1772_ADD(WD1772_TAG,ql_wd17xx_interface) MCFG_MICRODRIVE_ADD(MDV_1, mdv1_config) MCFG_MICRODRIVE_ADD(MDV_2, mdv2_config) - MCFG_RS232_PORT_ADD(RS232_A_TAG, rs232a_intf, default_rs232_devices, NULL, NULL) // wired as DCE - MCFG_RS232_PORT_ADD(RS232_B_TAG, rs232b_intf, default_rs232_devices, NULL, NULL) // wired as DTE + MCFG_RS232_PORT_ADD(RS232_A_TAG, rs232a_intf, default_rs232_devices, NULL) // wired as DCE + MCFG_RS232_PORT_ADD(RS232_B_TAG, rs232b_intf, default_rs232_devices, NULL) // wired as DTE // cartridge MCFG_CARTSLOT_ADD("cart") |