]> git.sur5r.net Git - cc65/blob - libsrc/tgi/tgi_settextdir.s
Updated to use cbm_kernal.inc. Whitespace cleanups
[cc65] / libsrc / tgi / tgi_settextdir.s
1 ;
2 ; Ullrich von Bassewitz, 2011-07-17
3 ;
4
5         .include        "tgi-kernel.inc"
6
7
8 ;-----------------------------------------------------------------------------
9 ; void __fastcall__ tgi_settextdir (unsigned char dir);
10 ; /* Set the direction for text output. dir is one of the TGI_TEXT_XXX
11 ; ** constants.
12 ; */
13 ;
14
15 .proc   _tgi_settextdir
16
17         sta     _tgi_textdir            ; Remember the direction
18         rts
19
20 .endproc
21