summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2023-07-24 13:36:12 +0200
committer Olivier Galibert <galibert@pobox.com>2026-01-07 08:01:34 +0100
commit63a40168225a343dcc9a4098daedbdc8e7a371eb (patch)
tree0e8ee696536cfe43225f84847f4cce5958b013b6 /scripts/src
parentf528cd6210bfc15b277ed3ff428a4973b9b912a5 (diff)
lisa: Massive updates
core: Better support for external mmus Note: I didn't expect to push that one right now, it's missing documentation among other things, but since some people seems to be interested to work on that driver I don't want to hold them.
Diffstat (limited to 'scripts/src')
-rw-r--r--scripts/src/bus.lua13
-rw-r--r--scripts/src/machine.lua12
2 files changed, 25 insertions, 0 deletions
diff --git a/scripts/src/bus.lua b/scripts/src/bus.lua
index d4ee478b7e9..9b35a3917bd 100644
--- a/scripts/src/bus.lua
+++ b/scripts/src/bus.lua
@@ -6277,3 +6277,16 @@ if (BUSES["STCART_CONNECTOR"]~=null) then
MAME_DIR .. "src/devices/bus/st/rom.h",
}
end
+
+---------------------------------------------------
+--
+--@src/devices/bus/applepp/applepp.h,BUSES["APPLEPP"] = true
+---------------------------------------------------
+if (BUSES["APPLEPP"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/bus/applepp/applepp.cpp",
+ MAME_DIR .. "src/devices/bus/applepp/applepp.h",
+ MAME_DIR .. "src/devices/bus/applepp/storagehle.cpp",
+ MAME_DIR .. "src/devices/bus/applepp/storagehle.h",
+ }
+end
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua
index 8deb9fa052e..4166fedc64f 100644
--- a/scripts/src/machine.lua
+++ b/scripts/src/machine.lua
@@ -5490,3 +5490,15 @@ if (MACHINES["SUN1_MMU"]~=null) then
MAME_DIR .. "src/devices/machine/sun1_mmu.h",
}
end
+
+---------------------------------------------------
+--
+--@src/devices/machine/quadmouse.h,MACHINES["QUADMOUSE"] = true
+---------------------------------------------------
+
+if (MACHINES["QUADMOUSE"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/machine/quadmouse.cpp",
+ MAME_DIR .. "src/devices/machine/quadmouse.h",
+ }
+end