dot matrix character set
I am trying to program an 8x8 led dot matrix display by using Atmel 89S51 microcontroller in assembly.
I found a character set for 5x7 LED displays in some message here, in it hex codes
for all the ascii characters were provided for example :
for A the code was ' db 1fh,24h,44h,24h,1fh ;A '
for $ the code was ' db 32h,49h,7fh,49h,26h ;$ '
and codes for rest of the characters were provided as well.
I wanted to ask whether anyone has a similar character set for 8x8 displays (in assembly) ,if so can you please give it to me.