mirror of
https://github.com/cc65/cc65.git
synced 2024-11-06 15:06:07 +00:00
24 lines
276 B
ArmAsm
24 lines
276 B
ArmAsm
|
;
|
||
|
; 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
|
||
|
|
||
|
|
||
|
|