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:
Abdessamad Derraz
2026-03-23 10:58:32 +01:00
parent 06f5157c35
commit 26f2824259
37 changed files with 1086 additions and 698 deletions
+34 -37
View File
@@ -1,8 +1,9 @@
emulator: Azahar
type: standalone + libretro
source: "https://github.com/azahar-emu/azahar"
core_classification: community_fork
source: "https://github.com/johndoe6345789/azahar_libretro"
upstream: "https://github.com/azahar-emu/azahar"
profiled_date: "2026-03-18"
profiled_date: "2026-03-23"
core_version: "Git"
display_name: "Nintendo - 3DS (Azahar)"
cores: [azahar]
@@ -10,47 +11,42 @@ systems:
- nintendo-3ds
notes: |
Azahar is the successor to Citra (via Lime3DS). Different codebase
from libretro/citra — has additional files not in the old Citra.
Successor to Citra (via Lime3DS). Libretro port by johndoe6345789.
Data dir: azahar-emu (legacy: citra-emu, lime3ds-emu).
ref: src/common/common_paths.h:41-47
ref: src/common/common_paths.h:41-43
Key file: keys.txt (NOT aes_keys.txt like libretro/citra).
ref: src/common/common_paths.h:83
Key file named keys.txt (not aes_keys.txt like old Citra).
Embedded encrypted key fallback if keys.txt absent.
ref: src/core/hw/aes/key.cpp:282-297
Uses RETRO_ENVIRONMENT_GET_SYSTEM_DIRECTORY.
ref: src/citra_libretro/environment.cpp:194
ref: src/citra_libretro/environment.cpp:179
.info has firmware_count=0 but core uses system_dir for files.
.info has firmware_count=0 but core loads files from system_dir.
boot9.bin and sector0x96.bin are defined in common_paths.h:84-85
but never loaded by any code path. Dead defines from Citra heritage.
System archives (shared font, Mii data, country list, bad word list)
have open-source replacements embedded in the binary.
ref: src/core/file_sys/archive_ncch.cpp:146-176
files:
# --- sysdata/ ---
- name: keys.txt
path: sysdata/keys.txt
system: nintendo-3ds
required: false
note: "AES keys (named keys.txt in Azahar, aes_keys.txt in old Citra)"
source_ref: "src/common/common_paths.h:83, src/core/hw/aes/key.cpp:291"
- name: boot9.bin
path: sysdata/boot9.bin
system: nintendo-3ds
required: false
source_ref: "src/common/common_paths.h:84"
- name: sector0x96.bin
path: sysdata/sector0x96.bin
system: nintendo-3ds
required: false
source_ref: "src/common/common_paths.h:85"
hle_fallback: true
note: "embedded encrypted fallback if missing"
source_ref: "src/core/hw/aes/key.cpp:283, src/common/common_paths.h:83"
- name: shared_font.bin
path: sysdata/shared_font.bin
system: nintendo-3ds
required: false
hle_fallback: true
note: "HLE fallback if missing"
source_ref: "src/common/common_paths.h:82"
note: "legacy load path; embedded open-source font used if missing"
source_ref: "src/core/hle/service/apt/apt.cpp:263-278"
- name: seeddb.bin
path: sysdata/seeddb.bin
@@ -59,33 +55,34 @@ files:
note: "game seed database for 9.6+ titles"
source_ref: "src/core/file_sys/seed_db.cpp:15"
# --- Azahar-only (not in libretro/citra) ---
# These require src/core/hw/unique_data.cpp which only exists in Azahar
- name: otp.bin
path: sysdata/otp.bin
system: nintendo-3ds
required: false
note: "OTP data for key derivation. Azahar-only."
source_ref: "src/core/hw/unique_data.cpp:214"
validation: [size, crypto]
note: "OTP data for console key derivation"
source_ref: "src/core/hw/unique_data.cpp:126-167, src/core/hw/unique_data.cpp:213"
- name: movable.sed
path: nand/private/movable.sed
system: nintendo-3ds
required: false
note: "console-unique key seed. Azahar-only."
source_ref: "src/core/hw/unique_data.cpp:218"
validation: [size, signature]
note: "console-unique key seed"
source_ref: "src/core/hw/unique_data.cpp:170-200, src/core/hw/unique_data.cpp:217"
- name: SecureInfo_A
path: nand/rw/sys/SecureInfo_A
system: nintendo-3ds
required: false
note: "console serial/region. Azahar-only."
source_ref: "src/core/hw/unique_data.cpp:206"
validation: [size, signature]
note: "console serial and region data"
source_ref: "src/core/hw/unique_data.cpp:43-92, src/core/hw/unique_data.cpp:205"
- name: LocalFriendCodeSeed_B
path: nand/rw/sys/LocalFriendCodeSeed_B
system: nintendo-3ds
required: false
note: "friend code generation. Azahar-only."
source_ref: "src/core/hw/unique_data.cpp:210"
validation: [size, signature]
note: "friend code generation seed"
source_ref: "src/core/hw/unique_data.cpp:94-123, src/core/hw/unique_data.cpp:209"