diff options
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 2fcc8ea9a69..59dfd6dbdea 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -930,6 +930,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/atahle.h,MACHINES["ATAHLE"] = true +--------------------------------------------------- + +if (MACHINES["ATAHLE"]~=null) then + files { + MAME_DIR .. "src/devices/machine/atahle.cpp", + MAME_DIR .. "src/devices/machine/atahle.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/ataflash.h,MACHINES["ATAFLASH"] = true --------------------------------------------------- @@ -943,6 +955,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/atastorage.h,MACHINES["ATASTORAGE"] = true +--------------------------------------------------- + +if (MACHINES["ATASTORAGE"]~=null) then + files { + MAME_DIR .. "src/devices/machine/atastorage.cpp", + MAME_DIR .. "src/devices/machine/atastorage.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/atmel_arm_aic.h,MACHINES["ARM_AIC"] = true --------------------------------------------------- |