mirror of
https://github.com/Abdess/retroarch_system.git
synced 2026-04-13 12:22:33 -05:00
- Added profiled_date field to all 204 existing profiles for update tracking - Created 56 alias profiles for cores that share BIOS with a parent (e.g., mednafen_psx -> beetle_psx, fbalpha2012 -> fbneo) 260 total profiles covering all 294 libretro cores (204 unique + 56 alias).
42 lines
1.8 KiB
YAML
42 lines
1.8 KiB
YAML
emulator: Holani
|
|
type: libretro
|
|
source: "https://github.com/LLeny/holani-retro"
|
|
profiled_date: "2026-03-18"
|
|
cores: [holani]
|
|
systems: [atari-lynx]
|
|
verification: existence
|
|
|
|
notes: |
|
|
Holani is a cycle-stepped Atari Lynx emulator written in Rust by LLeny.
|
|
The libretro port (holani-retro) loads lynxboot.img from the system
|
|
directory at retro_load_game time (lib.rs:110-121). Path is built as
|
|
system_directory + "/lynxboot.img", no subdirectory.
|
|
|
|
The core library (holani/src/rom.rs) embeds a free boot ROM from
|
|
https://bjoern.spruck.net/lynx/ as FREE_BOOTROM (512 bytes), used as
|
|
the default when no external ROM is loaded (Rom::default()). The
|
|
libretro wrapper attempts to load the real lynxboot.img, but if the
|
|
file is missing or the system directory is invalid, Lynx::new() already
|
|
has the free boot ROM initialized. No hash validation on the external
|
|
file; Rom::from_slice() only checks length == 512.
|
|
|
|
Unlike Handy and Gearlynx, Holani always boots because the free ROM
|
|
is compiled in. The real BIOS provides more accurate boot behavior
|
|
(encrypted cart loader, original RSA key), while the free ROM
|
|
reimplements the boot sequence without proprietary code.
|
|
|
|
ROM extensions: .lnx, .o
|
|
Core options: none.
|
|
|
|
files:
|
|
- name: "lynxboot.img"
|
|
description: "Atari Lynx boot ROM"
|
|
region: "World"
|
|
required: false
|
|
size: 512
|
|
sha1: "e4ed47fae31693e016b081c6bda48da5b70d7ccb"
|
|
md5: "fcd403db69f54290b51035d82f835e7b"
|
|
crc32: "0d973c9d"
|
|
source_ref: "holani-retro lib.rs:110-121 (bios load path), holani rom.rs:14-47 (FREE_BOOTROM embedded fallback), rom.rs:72-79 (from_slice length check only)"
|
|
notes: "Optional. Core ships with a free boot ROM embedded at compile time. Real BIOS provides original encrypted cart loader. No CRC/hash validation on load, only size == 512."
|