mirror of
https://github.com/holub/mame
synced 2025-06-07 05:13:46 +03:00
bus\lpci\pci.h: removed unused MCFG macros (nw)
This commit is contained in:
parent
e13cb27bd5
commit
7624f7490f
@ -114,20 +114,4 @@ private:
|
|||||||
// device type definition
|
// device type definition
|
||||||
DECLARE_DEVICE_TYPE(PCI_BUS, pci_bus_device)
|
DECLARE_DEVICE_TYPE(PCI_BUS, pci_bus_device)
|
||||||
|
|
||||||
|
|
||||||
/***************************************************************************
|
|
||||||
DEVICE CONFIGURATION MACROS
|
|
||||||
***************************************************************************/
|
|
||||||
|
|
||||||
#define MCFG_PCI_BUS_ADD(_tag, _busnum) \
|
|
||||||
MCFG_DEVICE_ADD(_tag, PCI_BUS, 0) \
|
|
||||||
downcast<pci_bus_device *>(device)->set_busnum(_busnum);
|
|
||||||
#define MCFG_PCI_BUS_DEVICE(_tag, _slot_intf, _def_slot, _fixed) \
|
|
||||||
MCFG_DEVICE_ADD(_tag, PCI_CONNECTOR, 0) \
|
|
||||||
MCFG_DEVICE_SLOT_INTERFACE(_slot_intf, _def_slot, _fixed)
|
|
||||||
|
|
||||||
#define MCFG_PCI_BUS_SIBLING(_father_tag) \
|
|
||||||
downcast<pci_bus_device *>(device)->set_father(_father_tag);
|
|
||||||
|
|
||||||
|
|
||||||
#endif // MAME_BUS_LPCI_PCI_H
|
#endif // MAME_BUS_LPCI_PCI_H
|
||||||
|
@ -221,7 +221,7 @@ void bebox_state::bebox_peripherals(machine_config &config)
|
|||||||
pcislot0.set_option_machine_config("mpc105", mpc105_config);
|
pcislot0.set_option_machine_config("mpc105", mpc105_config);
|
||||||
add_pci_slot(config, "pcibus:1", 1, "cirrus");
|
add_pci_slot(config, "pcibus:1", 1, "cirrus");
|
||||||
|
|
||||||
/*MCFG_PCI_BUS_DEVICE(12, nullptr, scsi53c810_pci_read, scsi53c810_pci_write)*/
|
/*MCFG_PCI_BUS_LEGACY_DEVICE(12, nullptr, scsi53c810_pci_read, scsi53c810_pci_write)*/
|
||||||
|
|
||||||
SMC37C78(config, m_smc37c78, 24'000'000);
|
SMC37C78(config, m_smc37c78, 24'000'000);
|
||||||
m_smc37c78->intrq_wr_callback().set(FUNC(bebox_state::fdc_interrupt));
|
m_smc37c78->intrq_wr_callback().set(FUNC(bebox_state::fdc_interrupt));
|
||||||
|
@ -141,8 +141,8 @@ MACHINE_CONFIG_START(gammagic_state::gammagic)
|
|||||||
// I82371SB(config, "i82371sb", 0);
|
// I82371SB(config, "i82371sb", 0);
|
||||||
// MCFG_I82439TX_ADD("i82439tx", "maincpu", "user")
|
// MCFG_I82439TX_ADD("i82439tx", "maincpu", "user")
|
||||||
MCFG_PCI_BUS_LEGACY_ADD("pcibus", 0)
|
MCFG_PCI_BUS_LEGACY_ADD("pcibus", 0)
|
||||||
// MCFG_PCI_BUS_DEVICE(0, "i82439tx", i82439tx_pci_read, i82439tx_pci_write)
|
// MCFG_PCI_BUS_LEGACY_DEVICE(0, "i82439tx", i82439tx_pci_read, i82439tx_pci_write)
|
||||||
// MCFG_PCI_BUS_DEVICE(1, "i82371sb", i82371sb_pci_read, i82371sb_pci_write)
|
// MCFG_PCI_BUS_LEGACY_DEVICE(1, "i82371sb", i82371sb_pci_read, i82371sb_pci_write)
|
||||||
/* video hardware */
|
/* video hardware */
|
||||||
pcvideo_vga(config);
|
pcvideo_vga(config);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user