Skip to content

Gearsystem - RetroBIOS

Type libretro
Classification official_port
Source https://github.com/drhelius/Gearsystem
Version 3.2.0
Profiled 2026-03-23
Cores gearsystem
Systems sega-mastersystem, sega-gamegear, sega-sg1000
Platform details

mastersystem: - bios_filename: bios.sms - source_ref: src/Memory.cpp:223-228 - notes: Boot ROM loaded via LoadBootromSMS() -> LoadBootroom(path, false).

Raw binary read, stored in m_pBootromSMS. Bank count computed as Pow2Ceil(size / 0x4000). Memory mapping controlled by port 3E bit 3.

**gamegear:**
- bios_filename: bios.gg
- source_ref: src/Memory.cpp:230-235
- notes: Boot ROM loaded via LoadBootromGG() -> LoadBootroom(path, true).

Raw binary read, stored in m_pBootromGG. Same bank computation. Supports standard GG BIOS and Majesco 1KB variant.

**sg1000:**
- bios_filename: None
- notes: No BIOS support. Memory.cpp:291 returns false from IsBootromEnabled()

when IsSG1000() or IsGameGearInSMSMode() is true.

Technical notes

Gearsystem is a Sega Master System / Game Gear / SG-1000 emulator by Ignacio Sanchez (drhelius). No BIOS is required for normal operation.

The core supports optional boot ROMs for Master System and Game Gear, controlled by core options "gearsystem_bios_sms" and "gearsystem_bios_gg" (both disabled by default). Boot ROMs are loaded in load_bootroms() from the system directory with fixed filenames.

SG-1000 and Game Gear in SMS mode have no BIOS support. IsBootromEnabled() returns false for both cases.

When enabled, the boot ROM executes as on original hardware, which may cause invalid ROMs to lock or fail to boot entirely.

2 files | 0 required, 2 optional | 2 in repo, 0 missing

bios.sms -optional

bios.gg -optional

Generated on 2026-03-25T14:56:43Z