2000-10-26 20:43:29 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 26.10.2000
|
|
|
|
;
|
|
|
|
; Screen size variables
|
|
|
|
;
|
|
|
|
|
2003-04-09 19:34:57 +00:00
|
|
|
.export screensize
|
2000-10-26 20:43:29 +00:00
|
|
|
|
2003-04-09 19:34:57 +00:00
|
|
|
.include "apple2.inc"
|
2000-10-26 20:43:29 +00:00
|
|
|
|
2003-04-09 19:34:57 +00:00
|
|
|
.proc screensize
|
2000-10-26 20:43:29 +00:00
|
|
|
|
2003-04-09 19:34:57 +00:00
|
|
|
ldx #XSIZE
|
|
|
|
ldy #YSIZE
|
|
|
|
rts
|
2000-10-26 20:43:29 +00:00
|
|
|
|
2003-04-09 19:34:57 +00:00
|
|
|
.endproc
|
2000-10-26 20:43:29 +00:00
|
|
|
|