cscg22-gearboy

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

gprint.c (95B)


      1#include <gb/drawing.h>
      2
      3void gprint(char *str) NONBANKED
      4{
      5    while(*str)
      6	wrtchr(*str++);
      7}