Rednex Game Boy Development System - An assembly toolchain for the Nintendo Game Boy and Game Boy Color https://rgbds.gbdev.io
  • C++ 67.6%
  • Assembly 17.9%
  • Shell 6%
  • Yacc 4.7%
  • CMake 2.7%
  • Other 0.9%
Find a file
2026-09-22 12:47:35 -04:00
.github Enable -Werror in all release build processes 2026-09-21 20:36:33 -04:00
cmake
contrib
docs Mention a sed command for updating the man page dates 2026-09-22 12:35:31 -04:00
include Release v1.0.4 2026-09-22 12:47:35 -04:00
man Release v1.0.4 2026-09-22 12:47:35 -04:00
src Do not deprecate implicit transparent color 0 2026-09-22 12:03:33 -04:00
test Correct the ROM hash for gb-starter-kit 2026-09-22 12:33:10 -04:00
.clang-format
.clang-tidy
.dockerignore
.editorconfig
.git-blame-ignore-revs
.gitattributes
.gitignore
CMakeLists.txt Add a reminder to read the release process doc 2026-09-21 19:36:02 -04:00
CMakePresets.json
Dockerfile Release v1.0.4 2026-09-22 12:47:35 -04:00
LICENSE
Makefile Omit build commands from auto-generated install.sh (#2138) 2026-09-21 16:04:08 -04:00
README.md

RGBDS

RGBDS (Rednex Game Boy Development System) is a free assembler/linker package for the Game Boy and Game Boy Color.

It consists of four tools:

  • RGBASM: assembler
  • RGBLINK: linker
  • RGBFIX: ROM checksum/header fixer
  • RGBGFX: PNG-to-Game Boy graphics converter

Documentation

The full documentation is available online, including the development history and version history, generated from the man pages in this repository.

The documentation website's own source code is available in the rgbds-www repository.

Community

If you have questions about the RGBDS code or its organization, you can contact the maintainers on the GBDev Discord server or other community channels, or via email at rgbds at gbdev dot io.

If you want to help maintain RGBDS, please read the contribution guide.

Installing

The platform-specific installation instructions are available online. To build from source using make or cmake, briefly:

make
sudo make install
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
cmake --build build
cmake --install build

Both build systems support a prefix (e.g. to install into a specific directory) and a suffix (e.g. to append the version number or commit ID):

make
sudo make install PREFIX=install_dir/ SUFFIX=-$(git rev-parse --short HEAD)
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DSUFFIX=-$(git rev-parse --short HEAD)
cmake --build build
cmake --install build --prefix install_dir

On Windows, any SUFFIX should include the .exe extension.