]> git.sur5r.net Git - cc65/blob - libsrc/tgi/tgi_install_vectorfont.s
Changed most "backticks" (grave accents) into apostrophes.
[cc65] / libsrc / tgi / tgi_install_vectorfont.s
1 ;
2 ; Ullrich von Bassewitz, 2009-11-06
3 ;
4
5         .include        "tgi-kernel.inc"
6
7
8 ;-----------------------------------------------------------------------------
9 ; void __fastcall__ tgi_install_vectorfont (const tgi_vectorfont* font);
10 ; /* Install a vector font for use. More than one vector font can be loaded,
11 ; ** but only one can be active. This function is used to tell which one. Call
12 ; ** with a NULL pointer to uninstall the currently installed font.
13 ; */
14 ;
15
16 .code
17 .proc   _tgi_install_vectorfont
18
19         sta     _tgi_vectorfont
20         stx     _tgi_vectorfont+1
21         rts
22
23 .endproc
24