diff options
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 35 |
1 files changed, 8 insertions, 27 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index fabb2cc8099..d38706a4e16 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -1983,7 +1983,6 @@ if (MACHINES["PCI"]~=null) then MAME_DIR .. "src/devices/machine/i82439tx.h", MAME_DIR .. "src/devices/machine/i82371sb.cpp", MAME_DIR .. "src/devices/machine/i82371sb.h", - MAME_DIR .. "src/devices/machine/lpc.cpp", MAME_DIR .. "src/devices/machine/lpc.h", MAME_DIR .. "src/devices/machine/lpc-acpi.cpp", MAME_DIR .. "src/devices/machine/lpc-acpi.h", @@ -2231,26 +2230,21 @@ end --------------------------------------------------- -- ---@src/devices/machine/s3c2400.h,MACHINES["S3C2400"] = true +--@src/devices/machine/s3c2400.h,MACHINES["S3C24XX"] = true +--@src/devices/machine/s3c2410.h,MACHINES["S3C24XX"] = true +--@src/devices/machine/s3c2440.h,MACHINES["S3C24XX"] = true --------------------------------------------------- -if (MACHINES["S3C2400"]~=null) then +if (MACHINES["S3C24XX"]~=null) then files { MAME_DIR .. "src/devices/machine/s3c2400.cpp", MAME_DIR .. "src/devices/machine/s3c2400.h", - MAME_DIR .. "src/devices/machine/s3c24xx.hxx", - } -end - ---------------------------------------------------- --- ---@src/devices/machine/s3c2410.h,MACHINES["S3C2410"] = true ---------------------------------------------------- - -if (MACHINES["S3C2410"]~=null) then - files { MAME_DIR .. "src/devices/machine/s3c2410.cpp", MAME_DIR .. "src/devices/machine/s3c2410.h", + MAME_DIR .. "src/devices/machine/s3c2440.cpp", + MAME_DIR .. "src/devices/machine/s3c2440.h", + MAME_DIR .. "src/devices/machine/s3c24xx.cpp", + MAME_DIR .. "src/devices/machine/s3c24xx.h", MAME_DIR .. "src/devices/machine/s3c24xx.hxx", } end @@ -2269,19 +2263,6 @@ end --------------------------------------------------- -- ---@src/devices/machine/s3c2440.h,MACHINES["S3C2440"] = true ---------------------------------------------------- - -if (MACHINES["S3C2440"]~=null) then - files { - MAME_DIR .. "src/devices/machine/s3c2440.cpp", - MAME_DIR .. "src/devices/machine/s3c2440.h", - MAME_DIR .. "src/devices/machine/s3c24xx.hxx", - } -end - ---------------------------------------------------- --- --@src/devices/machine/scnxx562.h,MACHINES["DUSCC"] = true --------------------------------------------------- |