2001-09-13 21:09:19 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 13.09.2000
|
|
|
|
;
|
|
|
|
; Screen size variables
|
|
|
|
;
|
|
|
|
|
2003-04-09 19:34:57 +00:00
|
|
|
.export screensize
|
2001-09-13 21:09:19 +00:00
|
|
|
|
2003-04-09 19:34:57 +00:00
|
|
|
.include "cbm510.inc"
|
2001-09-13 21:09:19 +00:00
|
|
|
|
2003-04-09 19:34:57 +00:00
|
|
|
.proc screensize
|
2001-09-13 21:09:19 +00:00
|
|
|
|
2003-04-09 19:34:57 +00:00
|
|
|
ldx #XSIZE
|
|
|
|
ldy #YSIZE
|
|
|
|
rts
|
|
|
|
|
|
|
|
.endproc
|
2001-09-13 21:09:19 +00:00
|
|
|
|
|
|
|
|