]> git.sur5r.net Git - cc65/blob - libsrc/osic1p/_scrsize.s
More room by default for zero-page data.
[cc65] / libsrc / osic1p / _scrsize.s
1 ;
2 ; based on PET implementation
3 ;
4 ; originally by:
5 ; Ullrich von Bassewitz, 26.10.2000
6 ;
7 ; Screen size variables
8 ;
9
10         .export         screensize
11
12         .include        "extzp.inc"
13         .include        "osic1p.inc"
14
15 .proc   screensize
16         ldx     #SCR_WIDTH
17         ldy     #SCR_HEIGHT
18         rts
19 .endproc