2011-08-01 21:00:51 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 2011-07-17
|
|
|
|
;
|
|
|
|
|
|
|
|
.include "tgi-kernel.inc"
|
|
|
|
|
|
|
|
|
|
|
|
;-----------------------------------------------------------------------------
|
|
|
|
; void __fastcall__ tgi_settextdir (unsigned char dir);
|
|
|
|
; /* Set the direction for text output. dir is one of the TGI_TEXT_XXX
|
2014-06-30 05:10:35 -04:00
|
|
|
; ** constants.
|
|
|
|
; */
|
2011-08-01 21:00:51 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
.proc _tgi_settextdir
|
|
|
|
|
|
|
|
sta _tgi_textdir ; Remember the direction
|
|
|
|
rts
|
|
|
|
|
|
|
|
.endproc
|
|
|
|
|