1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-09 16:29:09 +00:00
cc65/libsrc/nes/_scrsize.s

21 lines
229 B
ArmAsm
Raw Normal View History

;
; Ullrich von Bassewitz, 2003-04-14
;
; Screen size function
;
.export screensize
.include "nes.inc"
.proc screensize
ldx #screenrows
ldy #charsperline
rts
.endproc