ti83-sdk/lib83/gotoxy.c
2023-10-08 01:32:30 +02:00

12 lines
157 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;
}