mirror of
https://github.com/cc65/cc65.git
synced 2024-11-04 17:04:58 +00:00
763fe0b802
git-svn-id: svn://svn.cc65.org/cc65/trunk@4404 b7a2c559-68d2-44c3-8de9-860c34a00d81
25 lines
418 B
ArmAsm
25 lines
418 B
ArmAsm
;
|
|
; Ullrich von Bassewitz, 2009-10-30
|
|
;
|
|
|
|
|
|
.include "tgi-kernel.inc"
|
|
|
|
|
|
;-----------------------------------------------------------------------------
|
|
; unsigned __fastcall__ tgi_textheight (const char* s);
|
|
; /* Calculate the width of the text in pixels according to the current text
|
|
; * style.
|
|
; */
|
|
;
|
|
|
|
.proc _tgi_textheight
|
|
|
|
lda _tgi_charheight
|
|
ldx #0
|
|
rts
|
|
|
|
.endproc
|
|
|
|
|