summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src/bus.lua
diff options
context:
space:
mode:
author Nigel Barnes <Pernod70@users.noreply.github.com>2021-11-14 15:21:57 +0000
committer Nigel Barnes <Pernod70@users.noreply.github.com>2021-11-14 19:08:41 +0000
commitda5f67a62c1f70022c9ed0d65347d6818c1562c3 (patch)
tree951c9cd53bf4c6b5c008d580cf18d908560f5f84 /scripts/src/bus.lua
parent3d0246d5e771887112406a53c3ba8d27def2ca8f (diff)
bus/archimedes/podule: Various podules for Acorn Archimedes:
- Acorn AGA30 BBC I/O Podule - Acorn AKA05 ROM Podule - Acorn AKA10 BBC I/O Podule - Acorn AKA12 User Port/MIDI Podule - Acorn AKA15 MIDI and BBC I/O Podule - Acorn AKA16 MIDI Podule - Acorn AKA25 Ethernet - Acorn Tube Podule - Archimedes Dual RS423 Serial Interface (not working) - Armadillo Systems A448 Sound Sampler (not working) - Armadillo Systems A448b Stereo MIDI Sound Sampler (not working) - Atomwide Serial Expansion Card - Baildon Electronics IDE HD Interface - Clares Armadeus Sampler Board - Computer Concepts Fax-Pack (not working) - Computer Concepts LaserDirect (Canon LBP-4) (not working) - Computer Concepts ScanLight (not working) - Computer Concepts ScanLight Junior (not working) - Computer Concepts ScanLight Video 256 (not working) - Digital Services Ethernet Podule (not working) - HCCS User/Analogue Podule - RISC Developments Ethernet Card (not working) - RISC Developments IDE Hard Disc System - VTI User Port and SCSI Podule - Watford Electronics BBC User I/O Card - Wild Vision MidiMax - Wild Vision/Computer Concepts Lark A16
Diffstat (limited to 'scripts/src/bus.lua')
-rw-r--r--scripts/src/bus.lua53
1 files changed, 53 insertions, 0 deletions
diff --git a/scripts/src/bus.lua b/scripts/src/bus.lua
index 770b4fae633..404caa4832b 100644
--- a/scripts/src/bus.lua
+++ b/scripts/src/bus.lua
@@ -333,6 +333,59 @@ end
---------------------------------------------------
--
+--@src/devices/bus/archimedes/podule/slot.h,BUSES["ARCHIMEDES_PODULE"] = true
+---------------------------------------------------
+
+if (BUSES["ARCHIMEDES_PODULE"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/bus/archimedes/podule/slot.cpp",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/slot.h",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/a448.cpp",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/a448.h",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/armadeus.cpp",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/armadeus.h",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/ether1.cpp",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/ether1.h",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/etherd.cpp",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/etherd.h",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/etherr.cpp",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/etherr.h",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/faxpack.cpp",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/faxpack.h",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/ide_rdev.cpp",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/ide_rdev.h",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/io.cpp",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/io.h",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/io_hccs.cpp",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/io_hccs.h",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/io_morley.cpp",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/io_morley.h",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/io_we.cpp",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/io_we.h",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/lark.cpp",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/lark.h",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/laserd.cpp",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/laserd.h",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/midimax.cpp",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/midimax.h",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/rom.cpp",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/rom.h",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/rs423.cpp",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/rs423.h",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/scanlight.cpp",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/scanlight.h",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/scsi_vti.cpp",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/scsi_vti.h",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/serial.cpp",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/serial.h",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/tube.cpp",
+ MAME_DIR .. "src/devices/bus/archimedes/podule/tube.h",
+ }
+end
+
+
+---------------------------------------------------
+--
--@src/devices/bus/astrocde/slot.h,BUSES["ASTROCADE"] = true
---------------------------------------------------