1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-01 13:41:34 +00:00
cc65/libsrc/cbm610/kscreen.s

17 lines
217 B
ArmAsm
Raw Normal View History

;
; Ullrich von Bassewitz, 2003-12-19
;
; SCREEN kernal call
;
.export SCREEN
.proc SCREEN
ldx #80 ; Columns
ldy #25 ; Lines
rts
.endproc