diff options
author | 2016-08-28 11:02:35 +0200 | |
---|---|---|
committer | 2016-08-28 11:02:35 +0200 | |
commit | d0665e28799ab292ee367a4fa2d77227d9fb94d5 (patch) | |
tree | d8408bfadba0b4bf074136f2f690901608bd78ca | |
parent | 2f42c40b1481d33790dc1572a962b77871242d24 (diff) |
fixed TARGET=virtual (nw)
-rw-r--r-- | scripts/target/mame/virtual.lua | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/scripts/target/mame/virtual.lua b/scripts/target/mame/virtual.lua index a5d04d8f370..6d13a002948 100644 --- a/scripts/target/mame/virtual.lua +++ b/scripts/target/mame/virtual.lua @@ -14,17 +14,29 @@ -------------------------------------------------- CPUS["M6502"] = true +CPUS["H6280"] = true -------------------------------------------------- -- specify available sound cores; some of these are -- only for MAME and so aren't included -------------------------------------------------- -SOUNDS["GB_SOUND"] = true -SOUNDS["AY8910"] = true +SOUNDS["NES_APU"] = true +SOUNDS["YM2612"] = true +SOUNDS["YM2151"] = true +SOUNDS["YM2413"] = true SOUNDS["YM2203"] = true +SOUNDS["AY8910"] = true SOUNDS["YM3526"] = true -SOUNDS["NES_APU"] = true +SOUNDS["YM3812"] = true +SOUNDS["C6280"] = true +SOUNDS["SN76496"] = true +SOUNDS["K053260"] = true +SOUNDS["SEGAPCM"] = true +SOUNDS["MULTIPCM"] = true +SOUNDS["GB_SOUND"] = true +SOUNDS["POKEY"] = true +SOUNDS["C352"] = true -------------------------------------------------- -- specify available video cores |