gbdk_playground/z_gbdk_playground_original/blank
Brian Buller 1478a597cf Initial Commit 2020-07-11 08:41:14 -05:00
..
Makefile Initial Commit 2020-07-11 08:41:14 -05:00
README.md Initial Commit 2020-07-11 08:41:14 -05:00
blank.c Initial Commit 2020-07-11 08:41:14 -05:00
docs.sh Initial Commit 2020-07-11 08:41:14 -05:00
screenshot.png Initial Commit 2020-07-11 08:41:14 -05:00

README.md

Blank

This example contains the minimal amount of code needed to create a working Game Boy game. Though not a very exciting one.

Source

All a GBDK game needs to compile and run (any C-program, in fact) is a main function. This is the entry point into your program.

void main() {

}