mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
22 lines
335 B
ArmAsm
22 lines
335 B
ArmAsm
;
|
|
; Ullrich von Bassewitz, 26.10.2000
|
|
;
|
|
; Screen size variables
|
|
;
|
|
|
|
.export screensize
|
|
|
|
; 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
|
|
|
|
|
|
|