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
Greg King 0390c34e88 Changed multi-line C comments into another style.
The left side doesn't look unbalanced.
2014-06-30 16:51:07 -04:00

22 lines
427 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