Here's a simple Gameboy emulator written in Zig using SDL3. It can run games like Tetris, Zelda or Kirby decently, and doesn't pretend to do much more. Most basic features are implemented, like graphics, sound and controls, but there was no effort to support any complex hardware behavior or bugs. On the other hand the codebase should be very simple to get into and hopefully very readable.
Tetris | Zelda |
---|---|
![]() |
![]() |
This should get you going after cloning the repo:
zig build -Doptimize=ReleaseFast run -- <rom_file>
Keyboard key | Gameboy |
---|---|
Esc | Exit |
WASD | DPad |
O | A |
K | B |
Enter | Start |
B | Select |
- ROM-only and MBC1 cartridge are supported, whereas MBC2 has limited support. Everything else is unsupported.
- It's assumed your refresh rate is 60Hz. Failing that, the gameplay speed will be wrong and the audio will get wildly out of sync.
- Sound will slowly accumulate lag over time anyway because 60Hz is not 59.94Hz.