mirror of
https://github.com/cc65/cc65.git
synced 2025-01-11 11:30:13 +00:00
22 lines
334 B
ArmAsm
22 lines
334 B
ArmAsm
;
|
|
; 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
|