diff options
author | 2021-11-24 14:03:41 +1100 | |
---|---|---|
committer | 2021-11-24 14:03:41 +1100 | |
commit | 32784fab1e754120143564671bb597d5097826ae (patch) | |
tree | 4e54cfcc5e4dafc0e887b1877d895c863cbd2612 /docs/release/scripts/src/machine.lua | |
parent | 44a5a57d0eefc1aeafb00d42f91e2100e186a71c (diff) |
0.238 filestag238
Diffstat (limited to 'docs/release/scripts/src/machine.lua')
-rw-r--r-- | docs/release/scripts/src/machine.lua | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/docs/release/scripts/src/machine.lua b/docs/release/scripts/src/machine.lua index 1dd90ed1a59..cd9d91c9a9e 100644 --- a/docs/release/scripts/src/machine.lua +++ b/docs/release/scripts/src/machine.lua @@ -70,6 +70,18 @@ files { } +--------------------------------------------------- +-- +--@src/devices/machine/acorn_bmu.h,MACHINES["ACORN_BMU"] = true +--------------------------------------------------- + +if (MACHINES["ACORN_BMU"]~=null) then + files { + MAME_DIR .. "src/devices/machine/acorn_bmu.cpp", + MAME_DIR .. "src/devices/machine/acorn_bmu.h", + } +end + -------------------------------------------------- -- --@src/devices/machine/acorn_ioc.h,MACHINES["ACORN_IOC"] = true @@ -82,6 +94,18 @@ if (MACHINES["ACORN_IOC"]~=null) then } end +--------------------------------------------------- +-- +--@src/devices/machine/acorn_lc.h,MACHINES["ACORN_LC"] = true +--------------------------------------------------- + +if (MACHINES["ACORN_LC"]~=null) then + files { + MAME_DIR .. "src/devices/machine/acorn_lc.cpp", + MAME_DIR .. "src/devices/machine/acorn_lc.h", + } +end + -------------------------------------------------- -- --@src/devices/machine/acorn_memc.h,MACHINES["ACORN_MEMC"] = true @@ -3179,6 +3203,7 @@ if (MACHINES["SPG290"]~=null) then MAME_DIR .. "src/devices/machine/spg290_ppu.h", } end + --------------------------------------------------- -- --@src/devices/machine/stvcd.h,MACHINES["STVCD"] = true @@ -3454,6 +3479,30 @@ end --------------------------------------------------- -- +--@src/devices/machine/upc82c710.h,MACHINES["UPC82C710"] = true +--------------------------------------------------- + +if (MACHINES["UPC82C710"]~=null) then + files { + MAME_DIR .. "src/devices/machine/upc82c710.cpp", + MAME_DIR .. "src/devices/machine/upc82c710.h", + } +end + +--------------------------------------------------- +-- +--@src/devices/machine/upc82c711.h,MACHINES["UPC82C711"] = true +--------------------------------------------------- + +if (MACHINES["UPC82C711"]~=null) then + files { + MAME_DIR .. "src/devices/machine/upc82c711.cpp", + MAME_DIR .. "src/devices/machine/upc82c711.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/upd1990a.h,MACHINES["UPD1990A"] = true --------------------------------------------------- |