Re: Extra Keyboard characters
- Posted by wolfgang fritz <wolfritz at king.igs.net> Aug 13, 2000
- 678 views
I think the extra characters you refer to are just part of the standard rom character set. Try printing out the following hexadecimal sets: #80 to #AF should be international characters and other symbols, #B0 to #DF should be the graphics 'block' characters, and #E0 to #FE should be the math symbols. .... or use the decimal equivalents... for i = #80 to #AF do printf(1,"%s ",{i}) end for Wolf