mirror of
https://github.com/Abdess/retroarch_system.git
synced 2026-04-13 12:22:33 -05:00
feat: complete medium audit fixes, add vircon32, quasi88 alt names
scraper: add MacII.ROM casing fix, Vircon32 system, QUASI88 alt naming convention (n88_0/1/2/3.rom alongside N88EXT*.ROM). retroarch pack: 445 -> 450 files, 60 systems, 0 missing. all choices traced to original emulator source code.
This commit is contained in:
@@ -260,6 +260,15 @@ class Scraper(BaseScraper):
|
||||
"manufacturer": "NEC",
|
||||
"docs": "https://docs.libretro.com/library/quasi88/",
|
||||
},
|
||||
# ref: Vircon32/libretro.c — virtual console, single BIOS
|
||||
"vircon32": {
|
||||
"files": [
|
||||
{"name": "Vircon32Bios.v32", "destination": "Vircon32Bios.v32", "required": True},
|
||||
],
|
||||
"core": "vircon32",
|
||||
"manufacturer": "Vircon",
|
||||
"docs": "https://docs.libretro.com/library/vircon32/",
|
||||
},
|
||||
}
|
||||
for sys_id, sys_data in EXTRA_SYSTEMS.items():
|
||||
if sys_id not in systems:
|
||||
@@ -332,6 +341,11 @@ class Scraper(BaseScraper):
|
||||
"sony-playstation": [
|
||||
{"name": "psxonpsp660.bin", "destination": "psxonpsp660.bin", "required": False},
|
||||
],
|
||||
# minivmac casing — ref: minivmac/src/MYOSGLUE.c
|
||||
# doc says MacII.rom, repo has MacII.ROM — both work on case-insensitive FS
|
||||
"apple-macintosh-ii": [
|
||||
{"name": "MacII.ROM", "destination": "MacII.ROM", "required": True},
|
||||
],
|
||||
}
|
||||
for sys_id, extra_files in EXTRA_SYSTEM_FILES.items():
|
||||
if sys_id in systems:
|
||||
|
||||
Reference in New Issue
Block a user