diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/genie.lua | 1 | ||||
-rw-r--r-- | scripts/target/mame/virtual.lua | 18 |
2 files changed, 16 insertions, 3 deletions
diff --git a/scripts/genie.lua b/scripts/genie.lua index 208f633a8c9..6504b2d5c50 100644 --- a/scripts/genie.lua +++ b/scripts/genie.lua @@ -1149,6 +1149,7 @@ configuration { "vs*" } "_WIN32", "_CRT_NONSTDC_NO_DEPRECATE", "_CRT_SECURE_NO_DEPRECATE", + "_CRT_STDIO_LEGACY_WIDE_SPECIFIERS", } links { "user32", 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 |