summaryrefslogtreecommitdiffstatshomepage
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/src/cpu.lua17
-rw-r--r--scripts/target/mame/mess.lua2
2 files changed, 19 insertions, 0 deletions
diff --git a/scripts/src/cpu.lua b/scripts/src/cpu.lua
index 0dcc83b6855..54c0bc7576a 100644
--- a/scripts/src/cpu.lua
+++ b/scripts/src/cpu.lua
@@ -593,6 +593,23 @@ if (CPUS["G65816"]~=null or _OPTIONS["with-tools"]) then
end
--------------------------------------------------
+-- Hitachi H16
+--@src/devices/cpu/h16/hd641016.h,CPUS["H16"] = true
+--------------------------------------------------
+
+if (CPUS["H16"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/cpu/h16/hd641016.cpp",
+ MAME_DIR .. "src/devices/cpu/h16/hd641016.h",
+ }
+end
+
+if (CPUS["H16"]~=null or _OPTIONS["with-tools"]) then
+ table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/h16/h16dasm.cpp")
+ table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/h16/h16dasm.h")
+end
+
+--------------------------------------------------
-- Hitachi H8 (16/32-bit H8/300, H8/300H, H8S2000 and H8S2600 series)
--@src/devices/cpu/h8/h8.h,CPUS["H8"] = true
--------------------------------------------------
diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua
index 95da65635ff..d525508a16c 100644
--- a/scripts/target/mame/mess.lua
+++ b/scripts/target/mame/mess.lua
@@ -71,6 +71,7 @@ CPUS["SPC700"] = true
CPUS["E1"] = true
CPUS["I860"] = true
CPUS["I960"] = true
+CPUS["H16"] = true
CPUS["H8"] = true
CPUS["H8500"] = true
CPUS["V810"] = true
@@ -2697,6 +2698,7 @@ files {
MAME_DIR .. "src/mame/drivers/korgdvp1.cpp",
MAME_DIR .. "src/mame/drivers/korgdw8k.cpp",
MAME_DIR .. "src/mame/drivers/korgm1.cpp",
+ MAME_DIR .. "src/mame/drivers/korgws.cpp",
MAME_DIR .. "src/mame/drivers/korgz3.cpp",
MAME_DIR .. "src/mame/drivers/microkorg.cpp",
MAME_DIR .. "src/mame/drivers/poly800.cpp",