mirror of
https://github.com/Abdess/retroarch_system.git
synced 2026-04-20 15:52:35 -05:00
feat: re-profile 37 emulators with upstream verification
source-verified core_classification, upstream URLs, validation fields, and hle_fallback flags. trimmed verbose notes. removed phantom files (azahar boot9/sector0x96). added bsnes2014 variant profiles.
This commit is contained in:
+80
-23
@@ -1,8 +1,9 @@
|
||||
emulator: bsnes-mercury
|
||||
type: libretro
|
||||
core_classification: enhanced_fork
|
||||
source: "https://github.com/libretro/bsnes-mercury"
|
||||
upstream: "https://github.com/bsnes-emu/bsnes"
|
||||
profiled_date: "2026-03-18"
|
||||
upstream: "https://byuu.org/higan"
|
||||
profiled_date: "2026-03-23"
|
||||
core_version: "v094 (Mercury)"
|
||||
display_name: "Nintendo - SNES / SFC (bsnes-mercury)"
|
||||
cores: [bsnes_mercury_accuracy, bsnes_mercury_balanced, bsnes_mercury_performance]
|
||||
@@ -13,100 +14,156 @@ systems:
|
||||
- nintendo-sufami-turbo
|
||||
|
||||
notes: |
|
||||
bsnes-mercury is bsnes v094 with Mercury optimizations: HLE for DSP
|
||||
and Hitachi coprocessors, firmware_appended support, overclocking.
|
||||
Fork of higan v094 by Alcaro. Restores HLE for coprocessor chips removed
|
||||
in v094, adds firmware_appended support and SuperFX overclocking.
|
||||
Three profiles: accuracy, balanced, performance (PPU differs, not firmware).
|
||||
.info says performance has 17 fw (no cx4) but the code compiles CX4 LLE
|
||||
in all profiles — cx4.data.rom works in performance too. The .info is wrong.
|
||||
Core option bsnes_chip_hle (default LLE) controls HLE/LLE at runtime.
|
||||
ref: target-libretro/libretro.cpp altImplementation(), "bsnes_chip_hle"
|
||||
Core option bsnes_chip_hle (default LLE, requires bsnes_violate_accuracy)
|
||||
controls HLE/LLE at runtime. ref: target-libretro/libretro.cpp:428-442
|
||||
|
||||
Same firmware loading as bsnes2014: system_dir via file::exists +
|
||||
mmapstream. No BS-X auto-load from system_dir (subsystem only).
|
||||
ref: target-libretro/libretro.cpp:245-254
|
||||
|
||||
HLE fallback for DSP1/1B/2/4, Hitachi/CX4, ST010.
|
||||
ref: sfc/cartridge/markup.cpp:351,404,618
|
||||
Firmware loaded from system_dir via file::exists + mmapstream.
|
||||
No hash or size validation on any firmware file.
|
||||
ref: target-libretro/libretro.cpp:241-263
|
||||
|
||||
firmware_appended: firmware can be appended to end of ROM file.
|
||||
ref: ananke/heuristics/super-famicom.hpp:83
|
||||
|
||||
SGB boot ROM NOT embedded (sgb.boot.rom from system_dir).
|
||||
CX4 NOT embedded (cx4.data.rom from system_dir).
|
||||
SPC700 IPL ROM (64 bytes) is embedded in the binary.
|
||||
ref: target-libretro/libretro.cpp:39
|
||||
|
||||
Upstream higan v094 by byuu (2014, site defunct). Mercury preserves v094
|
||||
code with HLE additions documented in changes.diff at repo root.
|
||||
|
||||
files:
|
||||
# Same 18 files as bsnes2014 accuracy — see bsnes2014.yml for details
|
||||
# DSP1-4 split (program+data), CX4, ST010-018, sgb.boot.rom
|
||||
# --- NEC uPD7725 DSP chips (DSP1/1B/2/3/4) ---
|
||||
# ananke always generates dsp1b filenames for DSP-1 games (backward-compatible)
|
||||
|
||||
- name: dsp1.program.rom
|
||||
system: nintendo-snes
|
||||
required: false
|
||||
size: 6144
|
||||
hle_fallback: true
|
||||
note: "only loaded via custom BML manifest, ananke uses dsp1b"
|
||||
source_ref: "sfc/cartridge/markup.cpp:422-432"
|
||||
|
||||
- name: dsp1.data.rom
|
||||
system: nintendo-snes
|
||||
required: false
|
||||
size: 2048
|
||||
hle_fallback: true
|
||||
note: "only loaded via custom BML manifest, ananke uses dsp1b"
|
||||
source_ref: "sfc/cartridge/markup.cpp:422-432"
|
||||
|
||||
- name: dsp1b.program.rom
|
||||
system: nintendo-snes
|
||||
required: false
|
||||
size: 6144
|
||||
hle_fallback: true
|
||||
source_ref: "ananke/heuristics/super-famicom.hpp:381"
|
||||
|
||||
- name: dsp1b.data.rom
|
||||
system: nintendo-snes
|
||||
required: false
|
||||
size: 2048
|
||||
hle_fallback: true
|
||||
source_ref: "ananke/heuristics/super-famicom.hpp:382"
|
||||
|
||||
- name: dsp2.program.rom
|
||||
system: nintendo-snes
|
||||
required: false
|
||||
size: 6144
|
||||
hle_fallback: true
|
||||
source_ref: "ananke/heuristics/super-famicom.hpp:403"
|
||||
|
||||
- name: dsp2.data.rom
|
||||
system: nintendo-snes
|
||||
required: false
|
||||
size: 2048
|
||||
hle_fallback: true
|
||||
source_ref: "ananke/heuristics/super-famicom.hpp:404"
|
||||
|
||||
- name: dsp3.program.rom
|
||||
system: nintendo-snes
|
||||
required: false
|
||||
note: "no HLE — required for SD Gundam GX"
|
||||
size: 6144
|
||||
hle_fallback: true
|
||||
source_ref: "ananke/heuristics/super-famicom.hpp:417"
|
||||
|
||||
- name: dsp3.data.rom
|
||||
system: nintendo-snes
|
||||
required: false
|
||||
size: 2048
|
||||
hle_fallback: true
|
||||
source_ref: "ananke/heuristics/super-famicom.hpp:418"
|
||||
|
||||
- name: dsp4.program.rom
|
||||
system: nintendo-snes
|
||||
required: false
|
||||
size: 6144
|
||||
hle_fallback: true
|
||||
source_ref: "ananke/heuristics/super-famicom.hpp:431"
|
||||
|
||||
- name: dsp4.data.rom
|
||||
system: nintendo-snes
|
||||
required: false
|
||||
size: 2048
|
||||
hle_fallback: true
|
||||
source_ref: "ananke/heuristics/super-famicom.hpp:432"
|
||||
|
||||
# --- Hitachi HG51B (CX4) ---
|
||||
|
||||
- name: cx4.data.rom
|
||||
system: nintendo-snes
|
||||
required: false
|
||||
hle_fallback: true
|
||||
size: 3072
|
||||
note: "HLE available via Mercury — LLE optional"
|
||||
hle_fallback: true
|
||||
source_ref: "ananke/heuristics/super-famicom.hpp:146"
|
||||
|
||||
# --- NEC uPD96050 (ST010, ST011) ---
|
||||
|
||||
- name: st010.program.rom
|
||||
system: nintendo-snes
|
||||
required: false
|
||||
size: 49152
|
||||
hle_fallback: true
|
||||
source_ref: "ananke/heuristics/super-famicom.hpp:445"
|
||||
|
||||
- name: st010.data.rom
|
||||
system: nintendo-snes
|
||||
required: false
|
||||
size: 4096
|
||||
hle_fallback: true
|
||||
source_ref: "ananke/heuristics/super-famicom.hpp:446"
|
||||
|
||||
- name: st011.program.rom
|
||||
system: nintendo-snes
|
||||
required: false
|
||||
note: "no HLE — required for Hayazashi Nidan Morita Shougi"
|
||||
size: 49152
|
||||
source_ref: "ananke/heuristics/super-famicom.hpp:460"
|
||||
|
||||
- name: st011.data.rom
|
||||
system: nintendo-snes
|
||||
required: false
|
||||
size: 4096
|
||||
source_ref: "ananke/heuristics/super-famicom.hpp:461"
|
||||
|
||||
# --- ARM DSP (ST018) ---
|
||||
|
||||
- name: st018.program.rom
|
||||
system: nintendo-snes
|
||||
required: false
|
||||
size: 131072
|
||||
source_ref: "ananke/heuristics/super-famicom.hpp:475"
|
||||
|
||||
- name: st018.data.rom
|
||||
system: nintendo-snes
|
||||
required: false
|
||||
size: 32768
|
||||
source_ref: "ananke/heuristics/super-famicom.hpp:476"
|
||||
|
||||
# --- Super Game Boy ---
|
||||
|
||||
- name: sgb.boot.rom
|
||||
system: nintendo-sgb
|
||||
required: false
|
||||
size: 256
|
||||
note: "SGB boot ROM. NOT embedded in v094."
|
||||
source_ref: "ananke/heuristics/super-famicom.hpp:133"
|
||||
|
||||
Reference in New Issue
Block a user