summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/src')
-rw-r--r--scripts/src/cpu.lua6
-rw-r--r--scripts/src/machine.lua12
2 files changed, 14 insertions, 4 deletions
diff --git a/scripts/src/cpu.lua b/scripts/src/cpu.lua
index 846e1bad71c..b4b06d5330f 100644
--- a/scripts/src/cpu.lua
+++ b/scripts/src/cpu.lua
@@ -1746,7 +1746,7 @@ end
-- NEC V-series Intel-compatible
--@src/devices/cpu/nec/nec.h,CPUS["NEC"] = true
--@src/devices/cpu/nec/v25.h,CPUS["NEC"] = true
---@src/devices/cpu/nec/v53.h,CPUS["NEC"] = true
+--@src/devices/cpu/nec/v5x.h,CPUS["NEC"] = true
--@src/devices/cpu/v30mz/v30mz.h,CPUS["V30MZ"] = true
--------------------------------------------------
@@ -1766,8 +1766,8 @@ if (CPUS["NEC"]~=null) then
MAME_DIR .. "src/devices/cpu/nec/v25.cpp",
MAME_DIR .. "src/devices/cpu/nec/v25.h",
MAME_DIR .. "src/devices/cpu/nec/v25sfr.cpp",
- MAME_DIR .. "src/devices/cpu/nec/v53.cpp",
- MAME_DIR .. "src/devices/cpu/nec/v53.h",
+ MAME_DIR .. "src/devices/cpu/nec/v5x.cpp",
+ MAME_DIR .. "src/devices/cpu/nec/v5x.h",
}
end
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua
index b88139367ad..836d3e2d5b9 100644
--- a/scripts/src/machine.lua
+++ b/scripts/src/machine.lua
@@ -3808,7 +3808,6 @@ if (MACHINES["Z8038"]~=null) then
}
end
-
---------------------------------------------------
--
--@src/devices/machine/scc2698b.h,MACHINES["SCC2698B"] = true
@@ -3821,3 +3820,14 @@ if (MACHINES["SCC2698B"]~=null) then
}
end
+---------------------------------------------------
+--
+--@src/devices/machine/aic6250.h,MACHINES["AIC6250"] = true
+---------------------------------------------------
+
+if (MACHINES["AIC6250"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/machine/aic6250.cpp",
+ MAME_DIR .. "src/devices/machine/aic6250.h",
+ }
+end