mirror of
https://github.com/RevCurtisP/C02.git
synced 2024-10-31 10:14:09 +00:00
25 lines
612 B
Plaintext
25 lines
612 B
Plaintext
/********************************************
|
|
* screen - Screen Control Routines for C02 *
|
|
********************************************/
|
|
|
|
/* Clear the Screen */
|
|
void clrscn();
|
|
|
|
/* Move Cursor to Top Left of Screen */
|
|
void crsrhm();
|
|
|
|
/* Get Current Cursor Position *
|
|
* Returns: cursor column *
|
|
* cursor row */
|
|
char getpos();
|
|
|
|
/* Get Screen Size *
|
|
* Returns: width in columns *
|
|
* height in rows */
|
|
char getsiz();
|
|
|
|
/* Move Cursor to Specified Position *
|
|
* Args: column - screen column (0 = left) *
|
|
* row - screen line (0 = top) */
|
|
void setpos();
|