Mercurial > public > mk2
comparison code_part1/OSTC_code_asm_part1/aa_fonts.asm @ 775:f32b9ad6244c
add 120px HUGE font
author | heinrichsweikamp |
---|---|
date | Mon, 17 Mar 2014 14:54:17 +0100 |
parents | 92304826000d |
children |
comparison
equal
deleted
inserted
replaced
774:fac7710ab84e | 775:f32b9ad6244c |
---|---|
193 #include "aa_font90_idx.inc" | 193 #include "aa_font90_idx.inc" |
194 #include "aa_font90.inc" | 194 #include "aa_font90.inc" |
195 aa_font90_end: | 195 aa_font90_end: |
196 ; Make sure this is coherent... | 196 ; Make sure this is coherent... |
197 if aa_font90_nbbits != 3 | 197 if aa_font90_nbbits != 3 |
198 error SMALL fount should be encoded with 3bits anti-aliasing... | 198 error LARGE fount should be encoded with 3bits anti-aliasing... |
199 endif | 199 endif |
200 | 200 |
201 ;============================================================================= | 201 ;---- HUGE font description and data ---------------------------------------- |
202 aa_font120_block: | |
203 DB ' ', 0x2F | |
204 DB 0 | |
205 DB c120_aa_firstChar | |
206 DB c120_aa_chars | |
207 DB 0x2F-c120_aa_firstChar | |
208 DB c120_aa_height + 0x80 ; AA flag. | |
209 ; | |
210 #include "c120_aa_idx.inc" | |
211 #include "c120_aa.inc" | |
212 aa_font92_end: | |
213 ; Make sure this is coherent... | |
214 if aa_font90_nbbits != 3 | |
215 error HUGE fount should be encoded with 3bits anti-aliasing... | |
216 endif | |
217 | |
218 ;============================================================================= |