diff options
| author | 2024-01-13 23:31:19 +0100 | |
|---|---|---|
| committer | 2024-01-13 23:34:05 +0100 | |
| commit | 828a54af4e35a29a5a9ecde5f4adba20274d8750 (patch) | |
| tree | 51214262b3cd681f9f5b594cafc91a95802f7604 /scripts/src/bus.lua | |
| parent | ce6c7e3d44e11cd8431546e4b90f88805e85b4a4 (diff) | |
newpci: Create a first stab at slottable cards. Embrace the future insanity
sw1000xg: Add a very temporary placeholder
Diffstat (limited to 'scripts/src/bus.lua')
| -rw-r--r-- | scripts/src/bus.lua | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/scripts/src/bus.lua b/scripts/src/bus.lua index 435b1bc6e96..94a23b3e2f2 100644 --- a/scripts/src/bus.lua +++ b/scripts/src/bus.lua @@ -5410,3 +5410,27 @@ if (BUSES["WAVEBLASTER"]~=null) then MAME_DIR .. "src/devices/bus/waveblaster/wg130.h", } end + +--------------------------------------------------- +-- +--@src/devices/bus/pci/pci_slot.h,BUSES["PCI"] = true +--------------------------------------------------- + +if (BUSES["PCI"]~=null) then + files { + MAME_DIR .. "src/devices/bus/pci/pci_slot.cpp", + MAME_DIR .. "src/devices/bus/pci/pci_slot.h", + MAME_DIR .. "src/devices/bus/pci/virge_pci.cpp", + MAME_DIR .. "src/devices/bus/pci/virge_pci.h", + MAME_DIR .. "src/devices/bus/pci/riva128.cpp", + MAME_DIR .. "src/devices/bus/pci/riva128.h", + MAME_DIR .. "src/devices/bus/pci/rivatnt.cpp", + MAME_DIR .. "src/devices/bus/pci/rivatnt.h", + MAME_DIR .. "src/devices/bus/pci/geforce.cpp", + MAME_DIR .. "src/devices/bus/pci/geforce.h", + MAME_DIR .. "src/devices/bus/pci/mga2064w.cpp", + MAME_DIR .. "src/devices/bus/pci/mga2064w.h", + MAME_DIR .. "src/devices/bus/pci/sw1000xg.cpp", + MAME_DIR .. "src/devices/bus/pci/sw1000xg.h", + } +end |
