]> git.sur5r.net Git - cc65/blob - libsrc/tgi/tgi_textheight.s
remove superfluous ".code" line
[cc65] / libsrc / tgi / tgi_textheight.s
1 ;
2 ; Ullrich von Bassewitz, 2009-10-30
3 ;
4
5
6         .include        "tgi-kernel.inc"
7
8
9 ;-----------------------------------------------------------------------------
10 ; unsigned __fastcall__ tgi_textheight (const char* s);
11 ; /* Calculate the width of the text in pixels according to the current text
12 ;  * style.
13 ;  */
14 ;
15
16 .proc   _tgi_textheight
17
18         lda     _tgi_charheight
19         ldx     #0
20         rts
21
22 .endproc
23
24