Skip to content

Instantly share code, notes, and snippets.

@fu-sen
Last active December 4, 2019 03:39
Show Gist options
  • Save fu-sen/785ca91d50e0409c84ab166676057007 to your computer and use it in GitHub Desktop.
Save fu-sen/785ca91d50e0409c84ab166676057007 to your computer and use it in GitHub Desktop.
z88dk PC-E200/G text test
#include <graphics.h>
#include <conio.h>
#include <stdio.h>
main(){
clg();
gotoxy(1,1);
printf("test\n");
gotoxy(2,2);
printf("test\n");
gotoxy(3,3);
printf("test\n");
while (!getk()){}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment