1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-15 10:29:00 +00:00
cc65/libsrc/c64/conio.s

24 lines
276 B
ArmAsm
Raw Normal View History

;
; Ullrich von Bassewitz, 06.08.1998
;
; Low level stuff for screen output/console input
;
.export initconio
.exportzp CURS_X, CURS_Y
.import xsize, ysize
.include "../cbm/cbm.inc"
.include "c64.inc"
.code
initconio:
jsr SCREEN
stx xsize
sty ysize
rts