mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 18:06:48 +00:00
0390c34e88
The left side doesn't look unbalanced.
22 lines
427 B
ArmAsm
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
|
|
|