cscg22-gearboy

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

main.c (237B)


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