Compile Pascal source code into a real Game Boy Advance ROM.
Debug a GBA game using scripted input replays and full state dumps.
Convert AI-generated images into Game Boy Advance ready sprites and tiles.
Run automated, repeatable headless test runs of a GBA ROM.
| vincitamore/pascal-gba | tinybiggames/ganymede | coldzer0/luadecompiler | |
|---|---|---|---|
| Stars | 1 | 11 | 12 |
| Language | Pascal | Pascal | Pascal |
| Setup difficulty | hard | moderate | hard |
| Complexity | 4/5 | 4/5 | 3/5 |
| Audience | developer | developer | developer |
Figures from each repo's GitHub metadata at analysis time.
Windows only, requires three separate toolchain installs before the first build works.
pascal-gba is a complete toolchain for making Game Boy Advance games using the Pascal programming language, along with its own emulator and debugging tools built specifically to support that development. It lets you compile real Pascal source code into actual .gba ROM files that can run on original hardware or an emulator, using the Free Pascal compiler's Game Boy Advance target. The project includes its own Game Boy Advance emulator, written entirely in Pascal, that can boot both commercial game cartridges and homemade games. It ships with a replacement system BIOS built from an existing open source project, so nothing extra is needed to run it. The emulator supports a headless mode with no window or audio, meant for scripted and repeatable test runs, plus features aimed squarely at debugging: it can play back a recorded sequence of button presses, take screenshots of the game screen at specific points, and dump a full snapshot of the emulator's internal state, including the processor, timers, and memory, to disk. Game code running inside the emulator can also send log messages out to the host computer through a small logging channel built into the emulator itself. Beyond the emulator, the project includes an asset pipeline that turns AI generated images into game ready graphics, handling steps like removing backgrounds, reducing colors to the format the hardware expects, and packing the result into tiles and sprite sheets, with an optional check where the finished art is rendered through the real emulator to confirm it looks right in game. There is also a small windowed launcher application for picking and running ROM files, and a skill file meant to teach an AI coding agent how to drive the whole toolchain. Getting started requires a Windows computer and three separate installs: a patched version of the Free Pascal compiler with its Game Boy Advance target, the devkitARM toolchain, and Python, all set up through provided installer scripts. Once installed, a single command builds a test ROM, and another single command runs it headlessly to confirm the whole chain works, from compiler through the processor emulation to the debug logging channel. The project, along with its bundled BIOS, is released under the MIT license.
A Pascal toolchain for building real Game Boy Advance games, complete with its own Pascal-written emulator, debugging tools, and an AI-image-to-sprite asset pipeline.
Mainly Pascal. The stack also includes Pascal, Free Pascal Compiler, devkitARM.
Use freely for any purpose, including commercial use, as long as you keep the copyright notice.
Setup difficulty is rated hard, with roughly 1h+ to a first successful run.
Mainly developer.
This repo across BitVibe Labs
Verify against the repo before relying on details.