2000-11-23 19:05:32 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 26.10.2000
|
|
|
|
;
|
|
|
|
; Screen size variables
|
|
|
|
;
|
|
|
|
|
2013-05-09 13:56:54 +02:00
|
|
|
.export screensize
|
2000-11-23 19:05:32 +00:00
|
|
|
|
2003-04-09 19:34:57 +00:00
|
|
|
; We will return the values directly instead of banking in the ROM and calling
|
|
|
|
; SCREEN which is a lot more overhead in code size and CPU cycles.
|
|
|
|
|
|
|
|
.proc screensize
|
|
|
|
|
|
|
|
ldx #40
|
|
|
|
ldy #25
|
|
|
|
rts
|
|
|
|
|
|
|
|
.endproc
|
2000-11-23 19:05:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
|