gbdk_playground/z_gbdk_playground_original/blank/README.md
2020-07-11 08:41:14 -05:00

395 B

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() {

}