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