summaryrefslogtreecommitdiffstatshomepage
path: root/scripts
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2020-12-27 13:15:02 +1100
committer Vas Crabb <vas@vastheman.com>2020-12-27 13:15:02 +1100
commit60714508334845bb4044144d0ff074d2f1463cb2 (patch)
treef88e5196806832ac42aed8cb66f77c06f66875a3 /scripts
parent43f569e58f26d23032b950ebcbd02f352532ba95 (diff)
Fix linking the virutal subtarget.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/target/mame/virtual.lua7
1 files changed, 5 insertions, 2 deletions
diff --git a/scripts/target/mame/virtual.lua b/scripts/target/mame/virtual.lua
index 90d458bf0d7..2d1c866d51a 100644
--- a/scripts/target/mame/virtual.lua
+++ b/scripts/target/mame/virtual.lua
@@ -13,13 +13,14 @@
-- specify available CPU cores
--------------------------------------------------
-CPUS["M6502"] = true
+CPUS["DSP16"] = true -- for qsound
CPUS["H6280"] = true
+CPUS["KS0164"] = true
+CPUS["M6502"] = true
CPUS["M680X0"] = true
CPUS["MCS48"] = true
CPUS["SH"] = true
CPUS["Z80"] = true
-CPUS["DSP16"] = true -- for qsound
--------------------------------------------------
-- specify available sound cores; some of these are
@@ -37,6 +38,7 @@ SOUNDS["IREMGA20"] = true
SOUNDS["K051649"] = true
SOUNDS["K053260"] = true
SOUNDS["K054539"] = true
+SOUNDS["KS0164"] = true
SOUNDS["MULTIPCM"] = true
SOUNDS["NES_APU"] = true
SOUNDS["OKIM6258"] = true
@@ -83,6 +85,7 @@ MACHINES["Z80DAISY"] = true
--------------------------------------------------
-- specify available bus cores
--------------------------------------------------
+BUSES["MIDI"] = true
--------------------------------------------------