1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 07:29:33 +00:00

New tgi_settextdir() function.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5105 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2011-08-01 21:00:51 +00:00
parent 03b147e71e
commit 417a57fabd
2 changed files with 22 additions and 0 deletions

View File

@ -78,6 +78,7 @@ S_OBJS = tgi-kernel.o \
tgi_setdrawpage.o \
tgi_setpalette.o \
tgi_setpixel.o \
tgi_settextdir.o \
tgi_settextstyle.o \
tgi_setviewpage.o \
tgi_unload.o \

View File

@ -0,0 +1,21 @@
;
; 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