mirror of
https://github.com/cc65/cc65.git
synced 2025-01-26 17:36:57 +00:00
28 lines
564 B
ArmAsm
28 lines
564 B
ArmAsm
|
;
|
||
|
; Ullrich von Bassewitz, 2009-10-30
|
||
|
;
|
||
|
|
||
|
|
||
|
.include "tgi-kernel.inc"
|
||
|
|
||
|
.import _strlen, pushax, tosumula0
|
||
|
|
||
|
;-----------------------------------------------------------------------------
|
||
|
; unsigned __fastcall__ tgi_textwidth (const char* s);
|
||
|
; /* Calculate the width of the text in pixels according to the current text
|
||
|
; * style.
|
||
|
; */
|
||
|
;
|
||
|
; Result is strlen (s) * tgi_textmagw * tgi_fontsizex
|
||
|
;
|
||
|
|
||
|
.proc _tgi_textwidth
|
||
|
|
||
|
jsr _strlen
|
||
|
jsr pushax
|
||
|
lda _tgi_charwidth
|
||
|
jmp tosumula0
|
||
|
|
||
|
.endproc
|
||
|
|