ti83-sdk/lib83/gotoxy.c
2023-10-08 14:52:17 +02:00

11 lines
154 B
C

#include <stdio.h>
__at(0x844B) unsigned char curRow;
__at(0x844C) unsigned char curCol;
void gotoxy(int x, int y) {
curRow = y;
curCol = x;
}