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