2000-11-23 19:05:32 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 26.10.2000
|
|
|
|
;
|
|
|
|
; Screen size variables
|
|
|
|
;
|
|
|
|
|
2003-04-09 19:34:57 +00:00
|
|
|
.export screensize
|
2000-11-23 19:05:32 +00:00
|
|
|
|
|
|
|
.include "pet.inc"
|
|
|
|
|
2003-04-09 19:34:57 +00:00
|
|
|
.proc screensize
|
2000-11-23 19:05:32 +00:00
|
|
|
|
|
|
|
ldx SCR_LINELEN
|
|
|
|
inx ; Variable is one less
|
2003-04-09 19:34:57 +00:00
|
|
|
ldy #25
|
2000-11-23 19:05:32 +00:00
|
|
|
rts
|
|
|
|
|
2003-04-09 19:34:57 +00:00
|
|
|
.endproc
|
2000-11-23 19:05:32 +00:00
|
|
|
|