What it runs
30 machines, 29 of them captured.
Each machine has a page carrying its boot frame, the crates it ships from, and the work still open against it. A machine with no capture yet says so on the same page.
Multi-system emulator suite
Drive any of 30 vintage computers and consoles from a JSON script or an MCP client, and get the same frames back every time.
One run, start to finish
Three steps: run 300 Game Boy frames, read the program counter, save a PNG. No window opens and nobody watches it happen. The cartridge is built from source in this project, so the run needs no firmware and no software you have to go and find.
[
{"action":"run_frames","frames":300},
{"action":"query","path":"cpu.pc"},
{"action":"save_screenshot","path":"game-boy.png"}
]Hand it to the Game Boy binary, with the cartridge from the checkout:
./emu198x-game-boy \
--rom test-data/synthetic-cartridges/nintendo-game-boy-logo.gb \
--script boot.jsonOne JSON report comes back on standard output. Every step that has something to report answers with what the machine did, rather than a promise that it did something. Its two observations, wrapped to fit this column:
{"kind":"run_frames","frames":300,
"reached":5285633,"stop_reason":"ReachedTarget"}
{"kind":"query",
"result":{"path":"cpu.pc","value":408}}That frame is the PNG the run wrote, and it is the file this site publishes for the Game Boy. Run the script again and the report comes back identical, down to the tick the machine stopped on, and the image matches byte for byte.
Scripting covers the step vocabulary and where an open-loop file stops being enough. MCP covers the same session when the next step depends on the last answer, and capture covers what a machine can hand back besides a screenshot.

What it runs
Each machine has a page carrying its boot frame, the crates it ships from, and the work still open against it. A machine with no capture yet says so on the same page.
How accurate it is
Hardware capture, hardware-validated test image, reference emulator, or a self-minted golden that catches drift and settles nothing. Which one backs a machine is written down per machine.
How to get it
Every one of the 30 machines ships an archive in each release — macOS on Apple silicon and Intel, Windows, and Linux. Extended machines are not the exception: they are built and published with the rest. A source checkout gives the same binaries, and every binary takes the same scripts either way.