2018-09-17 23:39:46 +00:00
|
|
|
/***************************************
|
|
|
|
* Screen Control Functions for VIC-20 *
|
|
|
|
***************************************/
|
2018-09-12 13:54:54 +00:00
|
|
|
|
2018-09-17 00:30:25 +00:00
|
|
|
/* 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();
|