diff options
author | 2014-05-24 13:35:26 +0000 | |
---|---|---|
committer | 2014-05-24 13:35:26 +0000 | |
commit | ca17664d304642ab204f4501a6b7c89225adb718 (patch) | |
tree | f0d92e2005417464c05b9d18c03ef6c66f475985 /src/mess/drivers/ql.c | |
parent | 77074b15d4a63b40094f4ac9cf98daedc2e3ad7e (diff) |
(MESS) ql: Started expansion port slotification. (nw)
Diffstat (limited to 'src/mess/drivers/ql.c')
-rw-r--r-- | src/mess/drivers/ql.c | 20 |
1 files changed, 6 insertions, 14 deletions
diff --git a/src/mess/drivers/ql.c b/src/mess/drivers/ql.c index d458c27792e..e78d4c53d6d 100644 --- a/src/mess/drivers/ql.c +++ b/src/mess/drivers/ql.c @@ -75,21 +75,7 @@ */ -#include "emu.h" -#include "cpu/m68000/m68000.h" -#include "cpu/mcs48/mcs48.h" -#include "cpu/mcs51/mcs51.h" -#include "imagedev/cartslot.h" -#include "imagedev/flopdrv.h" -#include "imagedev/printer.h" -#include "machine/ram.h" -#include "machine/microdrv.h" -#include "formats/basicdsk.h" -#include "machine/zx8302.h" -#include "sound/speaker.h" -#include "video/zx8301.h" #include "includes/ql.h" -#include "machine/wd17xx.h" #include "debugger.h" #define LOG_DISK_WRITE 0 @@ -1127,6 +1113,12 @@ static MACHINE_CONFIG_START( ql, ql_state ) MCFG_RS232_PORT_ADD(RS232_B_TAG, default_rs232_devices, NULL) // wired as DTE MCFG_RS232_CTS_HANDLER(DEVWRITELINE(ZX8302_TAG, zx8302_device, write_cts2)) + MCFG_QL_EXPANSION_SLOT_ADD("exp", ql_expansion_cards, NULL) + //MCFG_QL_EXPANSION_SLOT_IPL0L_CALLBACK() + //MCFG_QL_EXPANSION_SLOT_IPL1L_CALLBACK() + //MCFG_QL_EXPANSION_SLOT_BERRL_CALLBACK() + //MCFG_QL_EXPANSION_SLOT_EXTINTL_CALLBACK() + // cartridge MCFG_CARTSLOT_ADD("cart") MCFG_CARTSLOT_EXTENSION_LIST("bin,rom") |