mirror of
https://github.com/cc65/cc65.git
synced 2024-11-19 06:31:31 +00:00
417a57fabd
git-svn-id: svn://svn.cc65.org/cc65/trunk@5105 b7a2c559-68d2-44c3-8de9-860c34a00d81
22 lines
428 B
ArmAsm
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
|
|
|