1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-26 05:29:30 +00:00
cc65/libsrc/tgi/tgi_settextdir.s
uz 417a57fabd New tgi_settextdir() function.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5105 b7a2c559-68d2-44c3-8de9-860c34a00d81
2011-08-01 21:00:51 +00:00

22 lines
428 B
ArmAsm

;
; 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
; * constants.
; */
;
.proc _tgi_settextdir
sta _tgi_textdir ; Remember the direction
rts
.endproc