comparison code_part1/OSTC_code_asm_part1/aa_fonts.asm @ 91:3bcccb697bce

Added HW logo and dimmed cursor in small font.
author JeanDo
date Fri, 10 Dec 2010 02:35:26 +0100
parents 3e351e25f5d1
children d79bf9df55d7
comparison
equal deleted inserted replaced
90:6655b1c59adc 91:3bcccb697bce
22 DB ' ', 0x80 ; Translate space 22 DB ' ', 0x80 ; Translate space
23 DB '²', 0x81 23 DB '²', 0x81
24 DB '°', 0x82 24 DB '°', 0x82
25 DB '¤', 0x83 25 DB '¤', 0x83
26 DB 0xB7,0x7F ; Cursor... 26 DB 0xB7,0x7F ; Cursor...
27 DB 0xB8,0x84 ; Cursor...
27 DB 0 ; End of translation table 28 DB 0 ; End of translation table
28 DB aa_font28_firstChar ; To be substracted 29 DB aa_font28_firstChar ; To be substracted
29 DB aa_font28_chars ; Max value 30 DB aa_font28_chars ; Max value
30 DB 0x83-aa_font28_firstChar ; replace by ? when out. 31 DB 0x83-aa_font28_firstChar ; replace by ? when out.
31 DB aa_font28_height + 0x80 32 DB aa_font28_height + 0x80
67 DB 0x2F-aa_font90_firstChar 68 DB 0x2F-aa_font90_firstChar
68 DB aa_font90_height + 0x80 ; AA flag. 69 DB aa_font90_height + 0x80 ; AA flag.
69 ; 70 ;
70 #include "aa_font90_idx.inc" 71 #include "aa_font90_idx.inc"
71 #include "aa_font90.inc" 72 #include "aa_font90.inc"
73
74 ;=============================================================================
72 ; Make sure this is coherent... 75 ; Make sure this is coherent...
73 if aa_font90_nbbits != 3 76 if aa_font90_nbbits != 3
74 error SMALL fount should be encoded with 3bits anti-aliasing... 77 error SMALL fount should be encoded with 3bits anti-aliasing...
75 endif 78 endif