ti83-sdk/lib83/gotoxy.c

11 lines
154 B
C
Raw Normal View History

2023-10-07 23:32:30 +00:00
#include <stdio.h>
2023-10-08 12:52:17 +00:00
__at(0x844B) unsigned char curRow;
__at(0x844C) unsigned char curCol;
2023-10-07 23:32:30 +00:00
void gotoxy(int x, int y) {
curRow = y;
curCol = x;
}