git.y1.nz

gbdk-2020

GameBoy Development Kit
download: https://git.y1.nz/archives/gbdk.tar.gz
README | Files | Log | Refs | LICENSE

gbdk-lib/libc/targets/sm83/gprint.c

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

This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.