We all know the large font character map, and I was thinking of turning this into a (routine? library?) for TiBasic programmers to use.
Input: Ans (contains the character's number you want to print, for example, 65 is the "A")
Output: Prints the corresponding character to the screen at the top left corner
Code:
It's not that all optimized, but, it works!
Input: Ans (contains the character's number you want to print, for example, 65 is the "A")
Output: Prints the corresponding character to the screen at the top left corner
Code:
.nolist
#include "ti83plus.inc"
.list
.org userMem - 2
.db t2ByteTok, tAsmCmp
bcall(_ClrLCDFull)
ld a, 0
ld (CurRow), a
ld (CurCol), a
bcall(_RclAns)
bcall(_ConvOP1)
ld h,d
ld l,e
bcall(_PutC)
ret
.end
It's not that all optimized, but, it works!




