mirror of
https://github.com/holub/mame
synced 2025-04-23 08:49:55 +03:00
reduce dependency mak files by 130k (nw)
This commit is contained in:
parent
ed814a9228
commit
66827862e7
@ -83,6 +83,21 @@ void abcbus_slot_device::device_start()
|
||||
// SLOT_INTERFACE( abcbus_cards )
|
||||
//-------------------------------------------------
|
||||
|
||||
// slot devices
|
||||
#include "abc890.h"
|
||||
#include "dos.h"
|
||||
#include "fd2.h"
|
||||
#include "hdc.h"
|
||||
#include "lux10828.h"
|
||||
#include "lux21046.h"
|
||||
#include "lux21056.h"
|
||||
#include "lux4105.h"
|
||||
#include "uni800.h"
|
||||
#include "sio.h"
|
||||
#include "slutprov.h"
|
||||
#include "turbo.h"
|
||||
|
||||
|
||||
SLOT_INTERFACE_START( abcbus_cards )
|
||||
SLOT_INTERFACE("abc830", ABC830)
|
||||
SLOT_INTERFACE("abc832", ABC832)
|
||||
|
@ -309,20 +309,6 @@ protected:
|
||||
extern const device_type ABCBUS_SLOT;
|
||||
|
||||
|
||||
// slot devices
|
||||
#include "abc890.h"
|
||||
#include "dos.h"
|
||||
#include "fd2.h"
|
||||
#include "hdc.h"
|
||||
#include "lux10828.h"
|
||||
#include "lux21046.h"
|
||||
#include "lux21056.h"
|
||||
#include "lux4105.h"
|
||||
#include "uni800.h"
|
||||
#include "sio.h"
|
||||
#include "slutprov.h"
|
||||
#include "turbo.h"
|
||||
|
||||
SLOT_INTERFACE_EXTERN( abcbus_cards );
|
||||
SLOT_INTERFACE_EXTERN( abc1600bus_cards );
|
||||
|
||||
|
@ -688,18 +688,3 @@ WRITE8_MEMBER( luxor_55_10828_device::fdc_w )
|
||||
|
||||
m_fdc->gen_w(offset, data);
|
||||
}
|
||||
|
||||
|
||||
|
||||
//**************************************************************************
|
||||
// LUXOR 55 10828 DEVICE INPUT DEFAULTS
|
||||
//**************************************************************************
|
||||
|
||||
//-------------------------------------------------
|
||||
// DEVICE_INPUT_DEFAULTS( abc830_slow )
|
||||
//-------------------------------------------------
|
||||
|
||||
DEVICE_INPUT_DEFAULTS_START( abc830_slow )
|
||||
DEVICE_INPUT_DEFAULTS("SW1", 0x0f, 0x03)
|
||||
DEVICE_INPUT_DEFAULTS("S1", 0x01, 0x01)
|
||||
DEVICE_INPUT_DEFAULTS_END
|
||||
|
@ -112,10 +112,4 @@ private:
|
||||
// device type definition
|
||||
extern const device_type LUXOR_55_10828;
|
||||
|
||||
|
||||
// default input ports
|
||||
extern const input_device_default DEVICE_INPUT_DEFAULTS_NAME( abc830_slow )[];
|
||||
|
||||
|
||||
|
||||
#endif
|
||||
|
@ -247,6 +247,11 @@ void adam_expansion_slot_device::bd_w(address_space &space, offs_t offset, UINT8
|
||||
WRITE_LINE_MEMBER( adam_expansion_slot_device::int_w ) { m_out_int_func(state); }
|
||||
|
||||
|
||||
// slot devices
|
||||
#include "adamlink.h"
|
||||
#include "ide.h"
|
||||
#include "ram.h"
|
||||
|
||||
//-------------------------------------------------
|
||||
// SLOT_INTERFACE( adam_slot1_devices )
|
||||
//-------------------------------------------------
|
||||
|
@ -140,11 +140,6 @@ protected:
|
||||
extern const device_type ADAM_EXPANSION_SLOT;
|
||||
|
||||
|
||||
// slot devices
|
||||
#include "adamlink.h"
|
||||
#include "ide.h"
|
||||
#include "ram.h"
|
||||
|
||||
SLOT_INTERFACE_EXTERN( adam_slot1_devices );
|
||||
SLOT_INTERFACE_EXTERN( adam_slot2_devices );
|
||||
SLOT_INTERFACE_EXTERN( adam_slot3_devices );
|
||||
|
@ -251,6 +251,13 @@ WRITE_LINE_MEMBER( adamnet_device::reset_w )
|
||||
// SLOT_INTERFACE( adamnet_devices )
|
||||
//-------------------------------------------------
|
||||
|
||||
// slot devices
|
||||
#include "ddp.h"
|
||||
#include "fdc.h"
|
||||
#include "kb.h"
|
||||
#include "printer.h"
|
||||
#include "spi.h"
|
||||
|
||||
SLOT_INTERFACE_START( adamnet_devices )
|
||||
SLOT_INTERFACE("ddp", ADAM_DDP)
|
||||
SLOT_INTERFACE("fdc", ADAM_FDC)
|
||||
|
@ -127,13 +127,6 @@ extern const device_type ADAMNET;
|
||||
extern const device_type ADAMNET_SLOT;
|
||||
|
||||
|
||||
// slot devices
|
||||
#include "ddp.h"
|
||||
#include "fdc.h"
|
||||
#include "kb.h"
|
||||
#include "printer.h"
|
||||
#include "spi.h"
|
||||
|
||||
SLOT_INTERFACE_EXTERN( adamnet_devices );
|
||||
|
||||
|
||||
|
@ -358,12 +358,3 @@ WRITE8_MEMBER( adam_fdc_device::p2_w )
|
||||
|
||||
m_bus->txd_w(this, BIT(data, 4));
|
||||
}
|
||||
|
||||
|
||||
//-------------------------------------------------
|
||||
// DEVICE_INPUT_DEFAULTS( drive2 )
|
||||
//-------------------------------------------------
|
||||
|
||||
DEVICE_INPUT_DEFAULTS_START( drive2 )
|
||||
DEVICE_INPUT_DEFAULTS("SW3", 0x01, 0x01)
|
||||
DEVICE_INPUT_DEFAULTS_END
|
||||
|
@ -71,9 +71,4 @@ protected:
|
||||
extern const device_type ADAM_FDC;
|
||||
|
||||
|
||||
// default inputs
|
||||
extern const input_device_default DEVICE_INPUT_DEFAULTS_NAME( drive2 )[];
|
||||
|
||||
|
||||
|
||||
#endif
|
||||
|
@ -181,10 +181,14 @@ WRITE8_MEMBER( bw2_expansion_slot_device::modsel_w )
|
||||
}
|
||||
|
||||
|
||||
|
||||
//-------------------------------------------------
|
||||
// SLOT_INTERFACE( bw2_expansion_cards )
|
||||
//-------------------------------------------------
|
||||
|
||||
// slot devices
|
||||
#include "ramcard.h"
|
||||
|
||||
SLOT_INTERFACE_START( bw2_expansion_cards )
|
||||
SLOT_INTERFACE("ramcard", BW2_RAMCARD)
|
||||
SLOT_INTERFACE_END
|
||||
|
@ -127,9 +127,6 @@ protected:
|
||||
extern const device_type BW2_EXPANSION_SLOT;
|
||||
|
||||
|
||||
// slot devices
|
||||
#include "ramcard.h"
|
||||
|
||||
SLOT_INTERFACE_EXTERN( bw2_expansion_cards );
|
||||
|
||||
|
||||
|
@ -196,6 +196,11 @@ void cbm2_expansion_slot_device::write(address_space &space, offs_t offset, UINT
|
||||
// SLOT_INTERFACE( cbm2_expansion_cards )
|
||||
//-------------------------------------------------
|
||||
|
||||
// slot devices
|
||||
#include "24k.h"
|
||||
#include "hrg.h"
|
||||
#include "std.h"
|
||||
|
||||
SLOT_INTERFACE_START( cbm2_expansion_cards )
|
||||
SLOT_INTERFACE("24k", CBM2_24K)
|
||||
SLOT_INTERFACE_INTERNAL("standard", CBM2_STD)
|
||||
|
@ -132,11 +132,6 @@ protected:
|
||||
extern const device_type CBM2_EXPANSION_SLOT;
|
||||
|
||||
|
||||
// slot devices
|
||||
#include "24k.h"
|
||||
#include "hrg.h"
|
||||
#include "std.h"
|
||||
|
||||
SLOT_INTERFACE_EXTERN( cbm2_expansion_cards );
|
||||
|
||||
|
||||
|
@ -485,6 +485,17 @@ int cbm_iec_device::get_signal(int signal)
|
||||
// SLOT_INTERFACE( cbm_iec_devices )
|
||||
//-------------------------------------------------
|
||||
|
||||
// slot devices
|
||||
#include "c1541.h"
|
||||
#include "c1571.h"
|
||||
#include "c1581.h"
|
||||
#include "c64_nl10.h"
|
||||
#include "cmdhd.h"
|
||||
#include "diag264_lb_iec.h"
|
||||
#include "fd2000.h"
|
||||
#include "interpod.h"
|
||||
#include "serialbox.h"
|
||||
|
||||
SLOT_INTERFACE_START( cbm_iec_devices )
|
||||
SLOT_INTERFACE("c1540", C1540)
|
||||
SLOT_INTERFACE("c1541", C1541)
|
||||
|
@ -206,17 +206,6 @@ extern const device_type CBM_IEC;
|
||||
extern const device_type CBM_IEC_SLOT;
|
||||
|
||||
|
||||
// slot devices
|
||||
#include "c1541.h"
|
||||
#include "c1571.h"
|
||||
#include "c1581.h"
|
||||
#include "c64_nl10.h"
|
||||
#include "cmdhd.h"
|
||||
#include "diag264_lb_iec.h"
|
||||
#include "fd2000.h"
|
||||
#include "interpod.h"
|
||||
#include "serialbox.h"
|
||||
|
||||
SLOT_INTERFACE_EXTERN( cbm_iec_devices );
|
||||
|
||||
|
||||
|
@ -226,6 +226,16 @@ WRITE_LINE_MEMBER( comx_expansion_slot_device::clear_w ) { m_out_clear_func(stat
|
||||
// SLOT_INTERFACE( comx_expansion_cards )
|
||||
//-------------------------------------------------
|
||||
|
||||
// slot devices
|
||||
#include "clm.h"
|
||||
#include "eprom.h"
|
||||
#include "expbox.h"
|
||||
#include "fdc.h"
|
||||
#include "joycard.h"
|
||||
#include "printer.h"
|
||||
#include "ram.h"
|
||||
#include "thermal.h"
|
||||
|
||||
SLOT_INTERFACE_START( comx_expansion_cards )
|
||||
SLOT_INTERFACE("eb", COMX_EB)
|
||||
SLOT_INTERFACE("fd", COMX_FD)
|
||||
|
@ -160,16 +160,6 @@ protected:
|
||||
extern const device_type COMX_EXPANSION_SLOT;
|
||||
|
||||
|
||||
// slot devices
|
||||
#include "clm.h"
|
||||
#include "eprom.h"
|
||||
#include "expbox.h"
|
||||
#include "fdc.h"
|
||||
#include "joycard.h"
|
||||
#include "printer.h"
|
||||
#include "ram.h"
|
||||
#include "thermal.h"
|
||||
|
||||
SLOT_INTERFACE_EXTERN( comx_expansion_cards );
|
||||
|
||||
|
||||
|
@ -85,6 +85,9 @@ void ep64_expansion_bus_slot_device::device_reset()
|
||||
// SLOT_INTERFACE( ep64_expansion_bus_cards )
|
||||
//-------------------------------------------------
|
||||
|
||||
// slot devices
|
||||
#include "exdos.h"
|
||||
|
||||
SLOT_INTERFACE_START( ep64_expansion_bus_cards )
|
||||
SLOT_INTERFACE("exdos", EP64_EXDOS)
|
||||
SLOT_INTERFACE_END
|
||||
|
@ -142,9 +142,6 @@ protected:
|
||||
extern const device_type EP64_EXPANSION_BUS_SLOT;
|
||||
|
||||
|
||||
// slot devices
|
||||
#include "exdos.h"
|
||||
|
||||
SLOT_INTERFACE_EXTERN( ep64_expansion_bus_cards );
|
||||
|
||||
|
||||
|
@ -370,6 +370,15 @@ UINT8 ieee488_device::get_data()
|
||||
// SLOT_INTERFACE( cbm_ieee488_devices )
|
||||
//-------------------------------------------------
|
||||
|
||||
// slot devices
|
||||
#include "c2031.h"
|
||||
#include "c2040.h"
|
||||
#include "c8280.h"
|
||||
#include "d9060.h"
|
||||
#include "hardbox.h"
|
||||
#include "shark.h"
|
||||
#include "softbox.h"
|
||||
|
||||
SLOT_INTERFACE_START( cbm_ieee488_devices )
|
||||
SLOT_INTERFACE("c2040", C2040)
|
||||
SLOT_INTERFACE("c3040", C3040)
|
||||
|
@ -249,15 +249,6 @@ extern const device_type IEEE488;
|
||||
extern const device_type IEEE488_SLOT;
|
||||
|
||||
|
||||
// slot devices
|
||||
#include "c2031.h"
|
||||
#include "c2040.h"
|
||||
#include "c8280.h"
|
||||
#include "d9060.h"
|
||||
#include "hardbox.h"
|
||||
#include "shark.h"
|
||||
#include "softbox.h"
|
||||
|
||||
SLOT_INTERFACE_EXTERN( cbm_ieee488_devices );
|
||||
|
||||
|
||||
|
@ -71,6 +71,10 @@ void isbx_slot_device::device_start()
|
||||
// SLOT_INTERFACE( isbx_cards )
|
||||
//-------------------------------------------------
|
||||
|
||||
// slot devices
|
||||
#include "compis_fdc.h"
|
||||
#include "isbc_218a.h"
|
||||
|
||||
SLOT_INTERFACE_START( isbx_cards )
|
||||
SLOT_INTERFACE("fdc", COMPIS_FDC)
|
||||
SLOT_INTERFACE("fdc_218a", ISBC_218A)
|
||||
|
@ -147,10 +147,6 @@ protected:
|
||||
extern const device_type ISBX_SLOT;
|
||||
|
||||
|
||||
// slot devices
|
||||
#include "compis_fdc.h"
|
||||
#include "isbc_218a.h"
|
||||
|
||||
SLOT_INTERFACE_EXTERN( isbx_cards );
|
||||
|
||||
|
||||
|
@ -194,6 +194,10 @@ int pet_expansion_slot_device::phi2()
|
||||
// SLOT_INTERFACE( pet_expansion_cards )
|
||||
//-------------------------------------------------
|
||||
|
||||
// slot devices
|
||||
#include "64k.h"
|
||||
#include "superpet.h"
|
||||
|
||||
SLOT_INTERFACE_START( pet_expansion_cards )
|
||||
SLOT_INTERFACE("64k", PET_64K)
|
||||
SLOT_INTERFACE("superpet", SUPERPET)
|
||||
|
@ -135,10 +135,6 @@ protected:
|
||||
extern const device_type PET_EXPANSION_SLOT;
|
||||
|
||||
|
||||
// slot devices
|
||||
#include "64k.h"
|
||||
#include "superpet.h"
|
||||
|
||||
SLOT_INTERFACE_EXTERN( pet_expansion_cards );
|
||||
|
||||
|
||||
|
@ -198,6 +198,11 @@ void plus4_expansion_slot_device::cd_w(address_space &space, offs_t offset, UINT
|
||||
// SLOT_INTERFACE( plus4_expansion_cards )
|
||||
//-------------------------------------------------
|
||||
|
||||
// slot devices
|
||||
#include "c1551.h"
|
||||
#include "sid.h"
|
||||
#include "std.h"
|
||||
|
||||
SLOT_INTERFACE_START( plus4_expansion_cards )
|
||||
SLOT_INTERFACE("c1551", C1551)
|
||||
SLOT_INTERFACE("sid", PLUS4_SID)
|
||||
|
@ -175,11 +175,6 @@ protected:
|
||||
extern const device_type PLUS4_EXPANSION_SLOT;
|
||||
|
||||
|
||||
// slot devices
|
||||
#include "c1551.h"
|
||||
#include "sid.h"
|
||||
#include "std.h"
|
||||
|
||||
SLOT_INTERFACE_EXTERN( plus4_expansion_cards );
|
||||
|
||||
|
||||
|
@ -274,13 +274,4 @@ public:
|
||||
};
|
||||
|
||||
|
||||
// slot devices
|
||||
#include "dj2db.h"
|
||||
#include "djdma.h"
|
||||
#include "mm65k16s.h"
|
||||
#include "nsmdsa.h"
|
||||
#include "nsmdsad.h"
|
||||
#include "wunderbus.h"
|
||||
|
||||
|
||||
#endif
|
||||
|
@ -236,6 +236,9 @@ WRITE_LINE_MEMBER( vic10_expansion_slot_device::p0_w ) { if (m_card != NULL) m_c
|
||||
// SLOT_INTERFACE( vic10_expansion_cards )
|
||||
//-------------------------------------------------
|
||||
|
||||
// slot devices
|
||||
#include "std.h"
|
||||
|
||||
SLOT_INTERFACE_START( vic10_expansion_cards )
|
||||
// the following need ROMs from the software list
|
||||
SLOT_INTERFACE_INTERNAL("standard", VIC10_STD)
|
||||
|
@ -172,9 +172,6 @@ protected:
|
||||
extern const device_type VIC10_EXPANSION_SLOT;
|
||||
|
||||
|
||||
// slot devices
|
||||
#include "std.h"
|
||||
|
||||
SLOT_INTERFACE_EXTERN( vic10_expansion_cards );
|
||||
|
||||
|
||||
|
@ -11,6 +11,7 @@
|
||||
|
||||
#include "emu.h"
|
||||
#include "exp.h"
|
||||
#include "formats\imageutl.h"
|
||||
#include "emuopts.h"
|
||||
|
||||
|
||||
@ -210,6 +211,15 @@ void vic20_expansion_slot_device::cd_w(address_space &space, offs_t offset, UINT
|
||||
// SLOT_INTERFACE( vic20_expansion_cards )
|
||||
//-------------------------------------------------
|
||||
|
||||
// slot devices
|
||||
#include "megacart.h"
|
||||
#include "std.h"
|
||||
#include "vic1010.h"
|
||||
#include "vic1110.h"
|
||||
#include "vic1111.h"
|
||||
#include "vic1112.h"
|
||||
#include "vic1210.h"
|
||||
|
||||
SLOT_INTERFACE_START( vic20_expansion_cards )
|
||||
SLOT_INTERFACE("exp", VIC1010)
|
||||
SLOT_INTERFACE("3k", VIC1210)
|
||||
|
@ -162,15 +162,6 @@ protected:
|
||||
extern const device_type VIC20_EXPANSION_SLOT;
|
||||
|
||||
|
||||
// slot devices
|
||||
#include "megacart.h"
|
||||
#include "std.h"
|
||||
#include "vic1010.h"
|
||||
#include "vic1110.h"
|
||||
#include "vic1111.h"
|
||||
#include "vic1112.h"
|
||||
#include "vic1210.h"
|
||||
|
||||
SLOT_INTERFACE_EXTERN( vic20_expansion_cards );
|
||||
|
||||
|
||||
|
@ -253,6 +253,11 @@ WRITE_LINE_MEMBER( videobrain_expansion_slot_device::extres_w ) { m_out_extres_f
|
||||
// SLOT_INTERFACE_START( vidbrain_expansion_cards )
|
||||
//-------------------------------------------------
|
||||
|
||||
// slot devices
|
||||
#include "std.h"
|
||||
#include "money_minder.h"
|
||||
#include "timeshare.h"
|
||||
|
||||
SLOT_INTERFACE_START( vidbrain_expansion_cards )
|
||||
SLOT_INTERFACE_INTERNAL("standard", VB_STD)
|
||||
SLOT_INTERFACE_INTERNAL("moneyminder", VB_MONEY_MINDER)
|
||||
|
@ -173,11 +173,6 @@ protected:
|
||||
extern const device_type VIDEOBRAIN_EXPANSION_SLOT;
|
||||
|
||||
|
||||
// slot devices
|
||||
#include "std.h"
|
||||
#include "money_minder.h"
|
||||
#include "timeshare.h"
|
||||
|
||||
SLOT_INTERFACE_EXTERN( vidbrain_expansion_cards );
|
||||
|
||||
|
||||
|
@ -197,6 +197,15 @@ WRITE_LINE_MEMBER( vip_expansion_slot_device::run_w ) { if (m_card != NULL) m_ca
|
||||
// SLOT_INTERFACE vip_expansion_cards )
|
||||
//-------------------------------------------------
|
||||
|
||||
// slot devices
|
||||
#include "vp550.h"
|
||||
#include "vp570.h"
|
||||
#include "vp575.h"
|
||||
#include "vp585.h"
|
||||
#include "vp590.h"
|
||||
#include "vp595.h"
|
||||
#include "vp700.h"
|
||||
|
||||
SLOT_INTERFACE_START( vip_expansion_cards )
|
||||
SLOT_INTERFACE("super", VP550)
|
||||
//SLOT_INTERFACE("eprom", VP560)
|
||||
|
@ -158,15 +158,6 @@ protected:
|
||||
extern const device_type VIP_EXPANSION_SLOT;
|
||||
|
||||
|
||||
// slot devices
|
||||
#include "vp550.h"
|
||||
#include "vp570.h"
|
||||
#include "vp575.h"
|
||||
#include "vp585.h"
|
||||
#include "vp590.h"
|
||||
#include "vp595.h"
|
||||
#include "vp700.h"
|
||||
|
||||
SLOT_INTERFACE_EXTERN( vip_expansion_cards );
|
||||
|
||||
|
||||
|
@ -334,6 +334,16 @@ device_wangpcbus_card_interface::~device_wangpcbus_card_interface()
|
||||
// SLOT_INTERFACE( wangpc_cards )
|
||||
//-------------------------------------------------
|
||||
|
||||
// slot devices
|
||||
#include "emb.h"
|
||||
#include "lic.h"
|
||||
#include "lvc.h"
|
||||
#include "mcc.h"
|
||||
#include "mvc.h"
|
||||
#include "rtc.h"
|
||||
#include "tig.h"
|
||||
#include "wdc.h"
|
||||
|
||||
SLOT_INTERFACE_START( wangpc_cards )
|
||||
SLOT_INTERFACE("emb", WANGPC_EMB) // extended memory board
|
||||
SLOT_INTERFACE("lic", WANGPC_LIC) // local interconnect option card
|
||||
|
@ -207,16 +207,6 @@ public:
|
||||
};
|
||||
|
||||
|
||||
// slot devices
|
||||
#include "emb.h"
|
||||
#include "lic.h"
|
||||
#include "lvc.h"
|
||||
#include "mcc.h"
|
||||
#include "mvc.h"
|
||||
#include "rtc.h"
|
||||
#include "tig.h"
|
||||
#include "wdc.h"
|
||||
|
||||
SLOT_INTERFACE_EXTERN( wangpc_cards );
|
||||
|
||||
|
||||
|
@ -534,6 +534,11 @@ void abc80_state::machine_start()
|
||||
// MACHINE DRIVERS
|
||||
//**************************************************************************
|
||||
|
||||
DEVICE_INPUT_DEFAULTS_START( abc830_slow )
|
||||
DEVICE_INPUT_DEFAULTS("SW1", 0x0f, 0x03)
|
||||
DEVICE_INPUT_DEFAULTS("S1", 0x01, 0x01)
|
||||
DEVICE_INPUT_DEFAULTS_END
|
||||
|
||||
//-------------------------------------------------
|
||||
// MACHINE_CONFIG( abc80 )
|
||||
//-------------------------------------------------
|
||||
|
@ -1100,6 +1100,14 @@ void adam_state::machine_reset()
|
||||
// MACHINE CONFIGURATION
|
||||
//**************************************************************************
|
||||
|
||||
//-------------------------------------------------
|
||||
// DEVICE_INPUT_DEFAULTS( drive2 )
|
||||
//-------------------------------------------------
|
||||
|
||||
DEVICE_INPUT_DEFAULTS_START( drive2 )
|
||||
DEVICE_INPUT_DEFAULTS("SW3", 0x01, 0x01)
|
||||
DEVICE_INPUT_DEFAULTS_END
|
||||
|
||||
//-------------------------------------------------
|
||||
// MACHINE_CONFIG( adam )
|
||||
//-------------------------------------------------
|
||||
|
@ -9,6 +9,9 @@
|
||||
*/
|
||||
|
||||
#include "includes/c128.h"
|
||||
#include "bus/cbmiec/c1571.h"
|
||||
#include "bus/cbmiec/c1581.h"
|
||||
#include "cpu/z80/z80.h"
|
||||
#include "machine/cbm_snqk.h"
|
||||
#include "imagedev/cartslot.h"
|
||||
#include "sound/dac.h"
|
||||
|
@ -16,6 +16,8 @@
|
||||
*/
|
||||
|
||||
#include "includes/c64.h"
|
||||
#include "bus/cbmiec/c1541.h"
|
||||
#include "machine/cbm_snqk.h"
|
||||
|
||||
|
||||
|
||||
|
@ -139,6 +139,14 @@ DEVICE_INPUT_DEFAULTS_END
|
||||
// S100_INTERFACE( s100_intf )
|
||||
//-------------------------------------------------
|
||||
|
||||
// slot devices
|
||||
//#include "bus/s100/dj2db.h"
|
||||
//#include "bus/s100/djdma.h"
|
||||
//#include "bus/s100/mm65k16s.h"
|
||||
#include "bus/s100/nsmdsa.h"
|
||||
#include "bus/s100/nsmdsad.h"
|
||||
//#include "bus/s100/wunderbus.h"
|
||||
|
||||
static SLOT_INTERFACE_START( horizon_s100_cards )
|
||||
SLOT_INTERFACE("mdsa", S100_MDS_A)
|
||||
SLOT_INTERFACE("mdsad", S100_MDS_AD)
|
||||
|
@ -672,6 +672,14 @@ static S100_INTERFACE( s100_intf )
|
||||
DEVCB_NULL
|
||||
};
|
||||
|
||||
// slot devices
|
||||
#include "bus/s100/dj2db.h"
|
||||
#include "bus/s100/djdma.h"
|
||||
#include "bus/s100/mm65k16s.h"
|
||||
//#include "bus/s100/nsmdsa.h"
|
||||
//#include "bus/s100/nsmdsad.h"
|
||||
#include "bus/s100/wunderbus.h"
|
||||
|
||||
static SLOT_INTERFACE_START( mpz80_s100_cards )
|
||||
SLOT_INTERFACE("mm65k16s", S100_MM65K16S)
|
||||
SLOT_INTERFACE("wunderbus", S100_WUNDERBUS)
|
||||
|
@ -151,6 +151,9 @@ ROM sockets: UA3 2K or 4K character
|
||||
*/
|
||||
|
||||
#include "includes/pet.h"
|
||||
#include "bus/ieee488/c2040.h"
|
||||
#include "imagedev/cartslot.h"
|
||||
#include "machine/cbm_snqk.h"
|
||||
|
||||
|
||||
|
||||
|
@ -13,6 +13,9 @@
|
||||
*/
|
||||
|
||||
#include "includes/plus4.h"
|
||||
#include "imagedev/cartslot.h"
|
||||
#include "machine/cbm_snqk.h"
|
||||
#include "sound/t6721a.h"
|
||||
|
||||
|
||||
|
||||
|
@ -12,11 +12,10 @@
|
||||
#include "bus/pet/cass.h"
|
||||
#include "bus/vcs/ctrl.h"
|
||||
#include "cpu/m6502/m6510.h"
|
||||
#include "machine/cbm_snqk.h"
|
||||
#include "imagedev/snapquik.h"
|
||||
#include "machine/mos6526.h"
|
||||
#include "machine/pla.h"
|
||||
#include "machine/ram.h"
|
||||
#include "sound/dac.h"
|
||||
#include "sound/mos6581.h"
|
||||
#include "video/mos6566.h"
|
||||
|
||||
|
@ -11,10 +11,9 @@
|
||||
#include "bus/pet/exp.h"
|
||||
#include "bus/pet/user.h"
|
||||
#include "cpu/m6502/m6502.h"
|
||||
#include "imagedev/cartslot.h"
|
||||
#include "machine/6522via.h"
|
||||
#include "machine/6821pia.h"
|
||||
#include "machine/cbm_snqk.h"
|
||||
#include "imagedev/snapquik.h"
|
||||
#include "machine/pla.h"
|
||||
#include "machine/ram.h"
|
||||
#include "sound/speaker.h"
|
||||
|
@ -12,14 +12,13 @@
|
||||
#include "bus/plus4/user.h"
|
||||
#include "bus/vcs/ctrl.h"
|
||||
#include "cpu/m6502/m7501.h"
|
||||
#include "machine/cbm_snqk.h"
|
||||
#include "imagedev/snapquik.h"
|
||||
#include "machine/mos6529.h"
|
||||
#include "machine/mos6551.h"
|
||||
#include "machine/mos8706.h"
|
||||
#include "machine/pla.h"
|
||||
#include "machine/ram.h"
|
||||
#include "sound/mos7360.h"
|
||||
#include "sound/t6721a.h"
|
||||
|
||||
#define MOS7501_TAG "u2"
|
||||
#define MOS7360_TAG "u1"
|
||||
|
Loading…
Reference in New Issue
Block a user