1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-30 16:29:58 +00:00
cc65/libsrc/nes/_scrsize.s
cuz e625fcea95 Small fix by Stefan Haubenthal
git-svn-id: svn://svn.cc65.org/cc65/trunk@3059 b7a2c559-68d2-44c3-8de9-860c34a00d81
2004-05-31 19:30:27 +00:00

21 lines
229 B
ArmAsm

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