mirror of
https://github.com/RevCurtisP/C02.git
synced 2024-11-18 21:07:28 +00:00
25 lines
639 B
Plaintext
25 lines
639 B
Plaintext
|
/*****************************************************
|
||
|
* Screen Control Functions and Constants for VIC-20 *
|
||
|
*****************************************************/
|
||
|
|
||
|
/* 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();
|