summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src/machine.lua
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r--scripts/src/machine.lua38
1 files changed, 38 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua
index d5a30d27756..d254c010116 100644
--- a/scripts/src/machine.lua
+++ b/scripts/src/machine.lua
@@ -29,6 +29,8 @@ files {
MAME_DIR .. "src/devices/machine/ram.h",
MAME_DIR .. "src/devices/machine/legscsi.cpp",
MAME_DIR .. "src/devices/machine/legscsi.h",
+ MAME_DIR .. "src/devices/machine/sdlc.cpp",
+ MAME_DIR .. "src/devices/machine/sdlc.h",
MAME_DIR .. "src/devices/machine/terminal.cpp",
MAME_DIR .. "src/devices/machine/terminal.h",
MAME_DIR .. "src/devices/machine/timer.cpp",
@@ -673,6 +675,18 @@ end
---------------------------------------------------
--
+--@src/devices/machine/atmel_arm_aic.h,MACHINES["ARM_AIC"] = true
+---------------------------------------------------
+
+if (MACHINES["ARM_AIC"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/machine/atmel_arm_aic.cpp",
+ MAME_DIR .. "src/devices/machine/atmel_arm_aic.h",
+ }
+end
+
+---------------------------------------------------
+--
--@src/devices/machine/ay31015.h,MACHINES["AY31015"] = true
---------------------------------------------------
@@ -3287,3 +3301,27 @@ if (MACHINES["I82586"]~=null) then
MAME_DIR .. "src/devices/machine/i82586.h",
}
end
+
+---------------------------------------------------
+--
+--@src/devices/machine/adc0844.h,MACHINES["ADC0844"] = true
+---------------------------------------------------
+
+if (MACHINES["ADC0844"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/machine/adc0844.cpp",
+ MAME_DIR .. "src/devices/machine/adc0844.h",
+ }
+end
+
+---------------------------------------------------
+--
+--@src/devices/machine/28fxxx.h,MACHINES["28FXXX"] = true
+---------------------------------------------------
+
+if (MACHINES["28FXXX"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/machine/28fxxx.cpp",
+ MAME_DIR .. "src/devices/machine/28fxxx.h",
+ }
+end