A GameBoy emulator, written in Rust.
In my quest to build a GBA emulator, I made a Game Boy emulator.
Make sure you have the latest version of Rust installed
brew install sdl2
sudo apt update && sudo apt install -y libsdl2
cargo run <rom file path>
- You can also build a release and run the executable as well
Joypad | Keyboard |
---|---|
A | X |
B | Z |
Start | Space |
Select | Enter |
Up | Up Arrow |
Down | Down Arrow |
Left | Left Arrow |
Right | Right Arrow |
Test | Status |
---|---|
cpu instrs | 👍 |
instr timing | 👍 |
* Other Blargg tests failing or can not test due to not supporting CGB at the moment
Test | Status |
---|---|
DMG Acid | 👍 |
- Pan Docs
- Game Boy Opcodes
- gbz80(7) — CPU opcode reference
- Ultimate Game Boy Talk
- A journey into GameBoy emulation
- GBEDG
- GhostSonic Reddit Post on Sound
- Game Boy Sound Emulation
These are some awesome emulators by some really smart people that helped me get to this point.