]> git.sur5r.net Git - cc65/blob - libsrc/tgi/tgi_setaspectratio.s
Replace hard returns with an "else", add an error for non-IDENT tokens, and test...
[cc65] / libsrc / tgi / tgi_setaspectratio.s
1 ;
2 ; Ullrich von Bassewitz, 2011-05-01
3 ;
4 ; void __fastcall__ tgi_setaspectratio (unsigned aspectratio);
5 ; /* Set a new aspect ratio for the loaded driver. The aspect ratio is an
6 ; ** 8.8 fixed point value.
7 ; */
8 ;
9
10         .include        "tgi-kernel.inc"
11
12 .proc   _tgi_setaspectratio
13
14         sta     _tgi_aspectratio
15         stx     _tgi_aspectratio+1
16         rts
17
18 .endproc
19