cc65/libsrc/c1p/_scrsize.s

23 lines
335 B
ArmAsm
Raw Normal View History

2014-11-30 16:01:43 +01:00
;
; based on PET implementation
;
; originally by:
; Ullrich von Bassewitz, 26.10.2000
;
; Screen size variables
;
.export screensize
.include "extzp.inc"
.proc screensize
ldx SCR_LINELEN
inx ; Variable is one less
ldy #25
rts
.endproc