mirror of
https://github.com/cc65/cc65.git
synced 2024-12-27 00:29:31 +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:
parent
03b147e71e
commit
417a57fabd
@ -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 \
|
||||
|
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
|
||||
|
Loading…
Reference in New Issue
Block a user