Skip to content

Latest commit

 

History

History
35 lines (11 loc) · 395 Bytes

README.md

File metadata and controls

35 lines (11 loc) · 395 Bytes

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

}