summaryrefslogtreecommitdiffstatshomepage
path: root/scripts
diff options
context:
space:
mode:
author arbee <rb6502@users.noreply.github.com>2021-05-08 16:19:36 -0400
committer arbee <rb6502@users.noreply.github.com>2021-05-08 16:19:36 -0400
commitfa5977301ec34f26bbaab3e1ac3eb9750ebde50d (patch)
tree209dd19822b38e649804b5057e9c920331703a7b /scripts
parent6704819c1f1a5512667da958664a0badd0439b64 (diff)
apple2: Add support for the BOOTI card [R. Belmont]
Diffstat (limited to 'scripts')
-rw-r--r--scripts/src/bus.lua2
-rw-r--r--scripts/src/machine.lua23
-rw-r--r--scripts/target/mame/mess.lua2
3 files changed, 27 insertions, 0 deletions
diff --git a/scripts/src/bus.lua b/scripts/src/bus.lua
index 6b95615a32a..4cbf0266db2 100644
--- a/scripts/src/bus.lua
+++ b/scripts/src/bus.lua
@@ -2416,6 +2416,8 @@ if (BUSES["A2BUS"]~=null) then
MAME_DIR .. "src/devices/bus/a2bus/agat7ram.h",
MAME_DIR .. "src/devices/bus/a2bus/agat840k_hle.cpp",
MAME_DIR .. "src/devices/bus/a2bus/agat840k_hle.h",
+ MAME_DIR .. "src/devices/bus/a2bus/booti.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/booti.h",
MAME_DIR .. "src/devices/bus/a2bus/byte8251.cpp",
MAME_DIR .. "src/devices/bus/a2bus/byte8251.h",
MAME_DIR .. "src/devices/bus/a2bus/ccs7710.cpp",
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua
index 25d518e5065..8be9fe1d911 100644
--- a/scripts/src/machine.lua
+++ b/scripts/src/machine.lua
@@ -838,6 +838,18 @@ end
---------------------------------------------------
--
+--@src/devices/machine/at28c64b.h,MACHINES["AT28C64B"] = true
+---------------------------------------------------
+
+if (MACHINES["AT28C64B"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/machine/at28c64b.cpp",
+ MAME_DIR .. "src/devices/machine/at28c64b.h",
+ }
+end
+
+---------------------------------------------------
+--
--@src/devices/machine/at29x.h,MACHINES["AT29X"] = true
---------------------------------------------------
@@ -981,6 +993,17 @@ if (MACHINES["CDP1879"]~=null) then
}
end
+---------------------------------------------------
+--
+--@src/devices/machine/ch376.h,MACHINES["CH376"] = true
+---------------------------------------------------
+
+if (MACHINES["CH376"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/machine/ch376.cpp",
+ MAME_DIR .. "src/devices/machine/ch376.h",
+ }
+end
---------------------------------------------------
--
diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua
index b40f73b2c46..f01652ddbd2 100644
--- a/scripts/target/mame/mess.lua
+++ b/scripts/target/mame/mess.lua
@@ -478,6 +478,7 @@ MACHINES["AMIGAFDC"] = true
MACHINES["ARM_IOMD"] = true
MACHINES["AT_KEYBC"] = true
MACHINES["AT28C16"] = true
+MACHINES["AT28C64B"] = true
MACHINES["AT29X"] = true
MACHINES["AT45DBXX"] = true
MACHINES["ATAFLASH"] = true
@@ -490,6 +491,7 @@ MACHINES["CDP1852"] = true
MACHINES["CDP1871"] = true
MACHINES["CDP1879"] = true
--MACHINES["CDU76S"] = true
+MACHINES["CH376"] = true
MACHINES["CHESSMACHINE"] = true
MACHINES["CMOS40105"] = true
MACHINES["COM52C50"] = true