Monorepo for Aesthetic.Computer aesthetic.computer
at main 14 lines 230 B view raw
1// Hello World in C for GameBoy using GBDK 2#include <gb/gb.h> 3#include <stdio.h> 4 5void main(void) 6{ 7 printf("Hello World!\n"); 8 printf("Press Start"); 9 10 // Wait forever 11 while(1) { 12 wait_vbl_done(); 13 } 14}