diff options
author | 2022-06-13 22:08:22 +0200 | |
---|---|---|
committer | 2022-06-14 12:07:55 +0200 | |
commit | 58650bd6812a92dfcfd8fa5bc6e225b34d4aa479 (patch) | |
tree | 31b1d1294bac51d40e73aa9088e2f2a9aba8b011 /scripts/src/machine.lua | |
parent | 540426ea9172304ab0f3961832ef1dfafa6027e8 (diff) |
at, cammu: kick upstairs too
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 1c5adeb8507..344d06b9ecc 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -4995,3 +4995,25 @@ if (MACHINES["ARCHIMEDES_KEYB"]~=null) then MAME_DIR .. "src/devices/machine/archimedes_keyb.h", } end + +--------------------------------------------------- +-- +--@src/devices/machine/cammu.h,MACHINES["CAMMU"] = true +--------------------------------------------------- +if (MACHINES["CAMMU"]~=null) then + files { + MAME_DIR .. "src/devices/machine/cammu.cpp", + MAME_DIR .. "src/devices/machine/cammu.h", + } +end + +--------------------------------------------------- +-- +--@src/devices/machine/at.h,MACHINES["AT_MB"] = true +--------------------------------------------------- +if (MACHINES["AT_MB"]~=null) then + files { + MAME_DIR .. "src/devices/machine/at.cpp", + MAME_DIR .. "src/devices/machine/at.h", + } +end |