main.c (235B)
1#include <gb/gb.h> 2#include <stdint.h> 3 4 5void main(void) 6{ 7 // Loop forever 8 while(1) { 9 10 // Game main loop processing goes here 11 12 // Done processing, yield CPU and wait for start of next frame 13 wait_vbl_done(); 14 } 15}