cscg22-gearboy

CSCG 2022 Challenge 'Gearboy'
git clone https://git.sinitax.com/sinitax/cscg22-gearboy
Log | Files | Refs | sfeed.txt

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}