1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-07 04:29:01 +00:00
cc65/libsrc/tgi/tgi_textheight.s

25 lines
418 B
ArmAsm
Raw Normal View History

;
; 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