summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/src')
-rw-r--r--scripts/src/bus.lua6
-rw-r--r--scripts/src/machine.lua24
2 files changed, 26 insertions, 4 deletions
diff --git a/scripts/src/bus.lua b/scripts/src/bus.lua
index 6a8a3735a29..df37b27033e 100644
--- a/scripts/src/bus.lua
+++ b/scripts/src/bus.lua
@@ -496,8 +496,6 @@ if (BUSES["ATA"]~=null) then
files {
MAME_DIR .. "src/devices/bus/ata/atadev.cpp",
MAME_DIR .. "src/devices/bus/ata/atadev.h",
- MAME_DIR .. "src/devices/bus/ata/atahle.cpp",
- MAME_DIR .. "src/devices/bus/ata/atahle.h",
MAME_DIR .. "src/devices/bus/ata/ataintf.cpp",
MAME_DIR .. "src/devices/bus/ata/ataintf.h",
MAME_DIR .. "src/devices/bus/ata/atapicdr.cpp",
@@ -508,10 +506,10 @@ if (BUSES["ATA"]~=null) then
MAME_DIR .. "src/devices/bus/ata/cp2024.h",
MAME_DIR .. "src/devices/bus/ata/cr589.cpp",
MAME_DIR .. "src/devices/bus/ata/cr589.h",
+ MAME_DIR .. "src/devices/bus/ata/hdd.cpp",
+ MAME_DIR .. "src/devices/bus/ata/hdd.h",
MAME_DIR .. "src/devices/bus/ata/gdrom.cpp",
MAME_DIR .. "src/devices/bus/ata/gdrom.h",
- MAME_DIR .. "src/devices/bus/ata/idehd.cpp",
- MAME_DIR .. "src/devices/bus/ata/idehd.h",
MAME_DIR .. "src/devices/bus/ata/px320a.cpp",
MAME_DIR .. "src/devices/bus/ata/px320a.h",
}
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
---------------------------------------------------