diff options
author | 2021-05-08 16:19:36 -0400 | |
---|---|---|
committer | 2021-05-08 16:19:36 -0400 | |
commit | fa5977301ec34f26bbaab3e1ac3eb9750ebde50d (patch) | |
tree | 209dd19822b38e649804b5057e9c920331703a7b /scripts/src | |
parent | 6704819c1f1a5512667da958664a0badd0439b64 (diff) |
apple2: Add support for the BOOTI card [R. Belmont]
Diffstat (limited to 'scripts/src')
-rw-r--r-- | scripts/src/bus.lua | 2 | ||||
-rw-r--r-- | scripts/src/machine.lua | 23 |
2 files changed, 25 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 --------------------------------------------------- -- |