trekawek/coffee-gb
JavaGameboy emulator in Java and Kotlin.
git clone https://github.com/trekawek/coffee-gb.gitCoffee GB
A highly compatible Game Boy and Game Boy Color emulator for the desktop.
Coffee GB emulates the original Game Boy (GB/DMG) and Game Boy Color (GBC/CGB). It is built for high compatibility across the historic game library, unusual cartridges and accessories, and modern homebrew, demos, and diagnostic ROMs. The reusable emulation core is written in Java; the desktop application and its orchestration layer use Kotlin and Java.
Download and play
Coffee GB is distributed as a single executable JAR. It requires a desktop Java 16 or newer runtime; Java 21 LTS is recommended and is the version used by CI and release builds.
Download the JAR from the latest Coffee GB release.
Open it through your desktop's Java launcher, or start it from a terminal:
java -jar coffee-gb-VERSION.jarChoose File > Load ROM, or pass a ROM on the command line:
java -jar coffee-gb-VERSION.jar path/to/game.gb
ROMs are not included. Coffee GB accepts .gb, .gbc, and .rom files, as
well as ZIP archives containing a ROM. On macOS, game-controller support also
requires SDL2 (brew install sdl2); keyboard input works without it.
For netplay, one player chooses Link > Start server and the other chooses Link > Connect to server.
Default controls
| Action | Key |
|---|---|
| D-pad | Arrow keys |
| A / B | Z / X |
| Start / Select | Enter / Shift |
| Pause | Space |
| Save / load state | F5 / F7 |
| Rewind | Hold Backspace |
In single-player mode, there are ten save-state slots. Battery saves (.sav)
and save states (.sn0–.sn9) are stored next to the ROM. Pause, save
states, and rewind are disabled during netplay.
Custom keyboard mapping
Edit ~/.coffeegb.properties and use
KeyEvent
constant names:
btn_up=VK_UP
btn_down=VK_DOWN
btn_left=VK_LEFT
btn_right=VK_RIGHT
btn_a=VK_Z
btn_b=VK_X
btn_start=VK_ENTER
btn_select=VK_SHIFT
Features
- Systems: full DMG and CGB emulation, plus Super Game Boy borders and palettes.
- Hardware-focused accuracy: a cycle-stepped CPU and high-accuracy PPU, APU, timer, DMA, serial, and infrared behavior.
- Everyday play: battery-backed saves, ten save-state slots, pause/reset, hold-to-rewind, recent ROMs, and ZIP archive loading.
- Rollback netplay: TCP multiplayer for link-cable games, with local rollback hiding normal network latency and synchronized infrared communication.
- Broad cartridge support: MBC1/1M, MBC2, MBC3 with RTC and MBC30, MBC5, MBC6 with flash, MBC7 with EEPROM/accelerometer, MMM01, HuC1, HuC3, TAMA5, Pocket Camera, and numerous unlicensed and multicart mappers.
- Accessories: webcam-backed Game Boy Camera, Game Boy Printer with PNG export, Barcode Boy, Full Changer infrared, Datel Action Replay pass-through, cartridge rumble, and tilt input.
- Desktop controls and display: keyboard and game-controller input, scaling, rotation, grayscale, CGB color correction, LCD ghosting, and an SGB-border toggle.
- Cheats: Game Genie and GameShark codes, plus a bundled searchable libretro cheat database.
Compatibility
Compatibility is treated as a continuously tested feature, not as a static game list. The test profiles exercise 5,721 cases from 13 suite families. Every automated verdict is guarded: exact hardware results are required where Coffee GB matches them, while unresolved Gambatte outputs are pinned against regressions.
Pixel status: both Acid2 references and all 24 Mealybug Tearoom reference images are pixel-perfect.
| Test suite | Cases exercised | Current result |
|---|---|---|
| Blargg | 54 | 54 / 54 pass* |
| Mooneye Test Suite | 130 | 130 / 130 selected cases pass |
| RTC3Test | 3 | 3 / 3 menus pass |
| SameSuite | 71 | 71 / 71 later-revision cases pass |
| Gambatte HWTests | 4,674 | 4,442 match hardware; 232 current outputs are pinned exactly |
| BullyGB | 2 | 2 / 2 DMG and CGB cases pass |
| MBC30Test | 1 | 1 / 1 ROM banking and SRAM case passes |
| Daid / GB Emulator Shootout | 9 | 8 / 8 images have no out-of-tolerance pixels; ROM+RAM passes |
| DMG-ACID2 and CGB-ACID2 | 2 | 2 / 2 are pixel-perfect |
| Mealybug Tearoom | 24 | 24 / 24 are pixel-perfect |
| GBMicrotest | 513 | 482 / 482 machine-readable verdicts pass; 31 diagnostic ROMs have no verdict |
| gbc-hw-tests | 221 | 221 / 221 hardware-capture verdicts match |
| Misc.-GB-Tests | 17 | 17 / 17 pass verdicts match |
| Total | 5,721 | Every result is checked against hardware or an exact current baseline |
* Blargg's aggregate and individual checks overlap by design.
How strict compatibility results are interpreted
Every ROM with a machine-readable result must produce its documented pass value, match its selected raw hardware capture, or match an exact documented current output. Gambatte's 232 unresolved cases are likewise pinned to their complete hexadecimal output, so any change fails CI; a hardware-correct improvement removes the corresponding baseline entry.
Running the exhaustive Gambatte profile
The profile evaluates all 4,674 canonical hexadecimal DMG/CGB verdicts from 3,077 ROMs with two parameter workers by default in a test JVM capped at 1 GiB. It passes only when every case matches hardware or the exact current-output baseline:
mvn clean test -f core/pom.xml -Ptest-gambatte-hw
For bounded local runs, set both gambatte.batchCount and the zero-based
gambatte.batchIndex. Every index must run; batching partitions the pinned
manifest and does not suppress failures:
mvn test -f core/pom.xml -Ptest-gambatte-hw \
-Dgambatte.batchCount=64 -Dgambatte.batchIndex=0
AI-assisted compatibility work
Since 2026, Coffee GB has used AI coding agents as compatibility research tools.
A purpose-built controller.Agent
API lets an agent run a ROM headlessly under scripted control, inject input,
capture frames and audio, inspect registers and memory, and disassemble
execution without driving the desktop UI.
The working loop is deliberately evidence-based:
- Reproduce a reported problem with scripted input and capture the first point where emulation diverges.
- Diagnose it against hardware-backed test ROMs, hardware captures, schematics, and targeted comparisons with reference emulators.
- Make a focused change, add a regression test where practical, and run the focused checks; CI runs the full compatibility matrix before merge.
This makes AI useful for exploring difficult timing and cartridge edge cases, while hardware evidence, automated tests, and maintainer review remain the standard for correctness.
Project history
Coffee GB began as a six-week deep dive into how a small computer works. The 2017 origin story covers the CPU, pixel pipeline, audio, early compatibility testing, and first GBC implementation. The later rollback-netplay article explains how per-frame snapshots made high-latency link play practical.
| Date | Milestone |
|---|---|
| 31 Dec 2016 | The project starts. |
| 14 Jan 2017 | The first playable version runs Tetris, two weeks after the initial commit. |
| 5–7 Feb 2017 | Game Boy Color support lands with double-speed mode, banked RAM/VRAM, color graphics, and the GBC boot path. |
| 22 Dec 2017 | Coffee GB 1.0.0 is released. |
| 29 Feb 2024 | Save-state support is added. |
| Jul 2025 | Fast mementos enable rollback netplay, released in 1.5.0. |
| Aug 2025 | Super Game Boy borders and palettes arrive alongside command support and predefined game palettes. |
| Feb 2026 | The headless agent interface begins the AI-assisted compatibility workflow. |
Architecture
Coffee GB is a Maven reactor with three modules. The dependency flow is
swing → controller → core; the desktop module also uses the core
directly.
| Module | Role | Depends on |
|---|---|---|
core |
Reusable Java emulation engine: CPU, graphics, audio, memory, cartridges, serial/IR, SGB, and peripherals. | — |
controller |
Kotlin orchestration: sessions, timing, save states, rewind, rollback history, and networking. | core |
swing |
Kotlin/Java desktop UI, video/audio/input adapters, webcam and printer integration, and executable-JAR packaging. | controller, core |
The root pom.xml defines the reactor and shared build configuration.
Build from source
Use a JDK 16 or newer and Maven to build. JDK 21 is recommended and is used by CI.
git clone https://github.com/trekawek/coffee-gb.git
cd coffee-gb
mvn clean package
The executable fat JAR is created in swing/target/. On a development snapshot,
run it with:
java -jar swing/target/coffee-gb-*-SNAPSHOT.jar
Kudos
Special thanks to @ScottNash042, whose thorough compatibility testing, hard-to-find edge-case reports, and thoughtful feature proposals have provided enormous value to Coffee GB.
Coffee GB also owes a great deal to the Game Boy hardware research community and to the authors of every test suite linked above.
License
Coffee GB is available under the MIT License.