- 积分
- 213
- 实力分
- 点
- 金钱数
- 两
- 技术分
- 分
- 贡献分
- 分
|
发表于 2006-8-11 10:41:26
|
显示全部楼层
原帖由 chino000 于 2006-8-11 01:26 发表
ab=ANSI ASCII代码,例如A=41,B=42,C=43......
argumments=输入参数,就是跟在tedce后面的那些数据。
ex: 要将"A"这个字符显示为空白字符,输入如下:
tedce 41 0000 0000 0000 0000 0000 0000 0000 ...
没错!它表示一个字母的7行像素,0为空白,1为黑点。
c, c*0x100, c*0x200, .... c*0x700 in file 4.fnt - it's first to last horizontal lines of char with code "c". NB: each byte contain double gfx of line (decribed in bits):
Bits in byte:
76543210
Pixels in byte (0 - left pixel, 3 - right pixel)
01230123 |
|