This is a simple snake game written in C using the GBDK toolchain for Gameboy.
GBDK is the only pre-requisite to build this project. Make sure you clone this project to include GBDK with it.
$ git clone --recurse-submodules https://github.com/michaelmcallister/yagbs.git
For Linux, you can install GBDK with the following commands
$ cd gbdk
$ make
$ make install
Compiling is easy once GBDK is installed:
- run
make clean
from the root directory to remove the ROM shipped with the repo - run
make
to build from source
The game will be written to the dist/
folder
$ ls -Gg dist/
total 64
-rwxrwxrwx 1 65536 Feb 15 11:12 snake.gb
- GBDK - Gameboy toolchain (compiler, assembler, linker, libraries)
- GBTD - Gameboy Tile Designer
- GBMB - Gameboy Map Designer
This project is licensed under the MIT License - see the LICENSE.md file for details
- GBDK for making a library that means I don't have to write ASM.
- OpenGameArt.org for the font sprites.