summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src/cpu.lua
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2019-03-30 10:32:00 +0100
committer Olivier Galibert <galibert@pobox.com>2019-04-09 08:53:40 +0200
commitadc473b74dac2cee67b65014e0099b1918b2ee1c (patch)
tree5c33b3068b8117671cac187c2e1458004d2ea8e6 /scripts/src/cpu.lua
parent31ff9e8cea38027c00f807b91974c30a5fe57286 (diff)
swp20, dspv: Skeletons [O. Galibert]
Diffstat (limited to 'scripts/src/cpu.lua')
-rw-r--r--scripts/src/cpu.lua17
1 files changed, 17 insertions, 0 deletions
diff --git a/scripts/src/cpu.lua b/scripts/src/cpu.lua
index 8c461e0ce16..5bbd4cd55cc 100644
--- a/scripts/src/cpu.lua
+++ b/scripts/src/cpu.lua
@@ -2837,6 +2837,23 @@ if (CPUS["MEG"]~=null or _OPTIONS["with-tools"]) then
end
--------------------------------------------------
+-- Yamaha DSPV
+--@src/devices/sound/dspv.h,CPUS["DSPV"] = true
+--------------------------------------------------
+
+if (CPUS["DSPV"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/sound/dspv.cpp",
+ MAME_DIR .. "src/devices/sound/dspv.h",
+ }
+end
+
+if (CPUS["DSPV"]~=null or _OPTIONS["with-tools"]) then
+ table.insert(disasm_files , MAME_DIR .. "src/devices/sound/dspvd.cpp")
+ table.insert(disasm_files , MAME_DIR .. "src/devices/sound/dspvd.h")
+end
+
+--------------------------------------------------
-- National Semiconductor NS32000 series
--@src/devices/cpu/ns32000/ns32000.h,CPUS["NS32000"] = true
--------------------------------------------------