summaryrefslogtreecommitdiffstats
path: root/scripts/src
diff options
context:
space:
mode:
author Dirk Best <mail@dirk-best.de>2021-08-04 19:29:32 +0200
committer Dirk Best <mail@dirk-best.de>2021-08-04 19:30:45 +0200
commit1e7d83cc4bee4cba40853b271c06d724e25fbbcb (patch)
tree5599ed09da63c8dab83817529606eabaeb0e77ad /scripts/src
parent68dbd42a24f56640642423f0e57fc9951ea819b9 (diff)
apxen: Checkpoint, get something on screen
- Implement video slot and mono graphics video card - Hook up CIO, SIO, RTC, PIT, SN76489 - Add daisy chain for Z80 devices and hook it up to the PIC - Add system control ports
Diffstat (limited to 'scripts/src')
-rw-r--r--scripts/src/bus.lua17
1 files changed, 17 insertions, 0 deletions
diff --git a/scripts/src/bus.lua b/scripts/src/bus.lua
index d889e7af294..10e37cdbae6 100644
--- a/scripts/src/bus.lua
+++ b/scripts/src/bus.lua
@@ -259,6 +259,23 @@ end
---------------------------------------------------
--
+--@src/devices/bus/apricot/video/video.h,BUSES["APRICOT_VIDEO"] = true
+---------------------------------------------------
+
+if (BUSES["APRICOT_VIDEO"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/bus/apricot/video/video.cpp",
+ MAME_DIR .. "src/devices/bus/apricot/video/video.h",
+ MAME_DIR .. "src/devices/bus/apricot/video/cards.cpp",
+ MAME_DIR .. "src/devices/bus/apricot/video/cards.h",
+ MAME_DIR .. "src/devices/bus/apricot/video/mono.cpp",
+ MAME_DIR .. "src/devices/bus/apricot/video/mono.h",
+ }
+end
+
+
+---------------------------------------------------
+--
--@src/devices/bus/aquarius/slot.h,BUSES["AQUARIUS"] = true
---------------------------------------------------