New tgi_settextdir() function.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5105 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -78,6 +78,7 @@ S_OBJS = tgi-kernel.o \
|
|||||||
tgi_setdrawpage.o \
|
tgi_setdrawpage.o \
|
||||||
tgi_setpalette.o \
|
tgi_setpalette.o \
|
||||||
tgi_setpixel.o \
|
tgi_setpixel.o \
|
||||||
|
tgi_settextdir.o \
|
||||||
tgi_settextstyle.o \
|
tgi_settextstyle.o \
|
||||||
tgi_setviewpage.o \
|
tgi_setviewpage.o \
|
||||||
tgi_unload.o \
|
tgi_unload.o \
|
||||||
|
|||||||
21
libsrc/tgi/tgi_settextdir.s
Normal file
21
libsrc/tgi/tgi_settextdir.s
Normal 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
|
||||||
|
|
||||||
Reference in New Issue
Block a user