1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-07-05 05:28:54 +00:00
C02/include/apple1/screen.a02
2018-09-16 20:30:25 -04:00

18 lines
362 B
Plaintext

;Screen Control Assembly Lanuage Routines for Apple 1
;Clear the Screen
CLRSCR: RTS ;Do Nothing (Drop to RTS)
;Move Cursor to Specified Coordinates
SETPOS EQU CLRSCR ;No Action
;Get Cursor Position
GETPOS: LDA #$FF ;Return Error
TAY
RTS
;Get Screen Size
GETSIZ: LDA #40 ;40 Columns
LDY #24 ;24 Lines
RTS