Re: A83: character table


[Prev][Next][Index][Thread]

Re: A83: character table



At 03:53 PM 11/26/97 -0800, you wrote:
>This may be a stupid question, but is there a place where I can get a
>table showing the binary values for the ti characters - esp. ti-83.
>(the equivalent of an ascii table for ti-83).
>
>-brian e. ash

I don't know of any such thing, you could create one of your own pretty
easily though, something like this is what you might be looking for:

 call _homeUp
 ld hl,char_table
 call _puts
 ret

char_table:
 .db 00,01,02,03,04,05,06,07,08,09,10,11,12,13,14,15
 .db 16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31
 .db 32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47
 .db 48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63
 ....	;etc, you get the idea, fill up the screen or make multiple screens
 .db 0

	-Andrew


References: