mirror of
https://github.com/cc65/cc65.git
synced 2024-11-19 06:31:31 +00:00
20 lines
321 B
ArmAsm
20 lines
321 B
ArmAsm
;
|
|
; based on PET implementation
|
|
;
|
|
; originally by:
|
|
; Ullrich von Bassewitz, 26.10.2000
|
|
;
|
|
; Screen size variables
|
|
;
|
|
|
|
.export screensize
|
|
|
|
.include "extzp.inc"
|
|
.include "osic1p.inc"
|
|
|
|
.proc screensize
|
|
ldx #SCR_WIDTH
|
|
ldy #SCR_HEIGHT
|
|
rts
|
|
.endproc
|