Mercurial > public > hwos_code
comparison src/aa_fonts.asm @ 560:b7eb98dbd800
bump to 2.96beta (REFACTORED VERSION)
author | heinrichsweikamp |
---|---|
date | Wed, 31 Jan 2018 19:39:37 +0100 |
parents | e4e662746c02 |
children | ca4556fb60b9 |
comparison
equal
deleted
inserted
replaced
559:9cb967d844f0 | 560:b7eb98dbd800 |
---|---|
10 ; 2010-11-23 : [jDG] Creation for OSTC 1.72, with the original fonts repacked. | 10 ; 2010-11-23 : [jDG] Creation for OSTC 1.72, with the original fonts repacked. |
11 ; 2010-12-01 : [jDG] Adding 3bits antialiased fonts. | 11 ; 2010-12-01 : [jDG] Adding 3bits antialiased fonts. |
12 ;============================================================================= | 12 ;============================================================================= |
13 | 13 |
14 ;---- TINY font description and data ---------------------------------------- | 14 ;---- TINY font description and data ---------------------------------------- |
15 fonts_data CODE_PACK | 15 fonts_data CODE_PACK 0x11000 ; <- Make sure all three fonts are in the same 64kByte page... |
16 | 16 |
17 | 17 |
18 global aa_font16_block | 18 global aa_font16_block |
19 aa_font16_block: | 19 aa_font16_block: |
20 DB '°', 0x7F ; Remap a few ASCII chars, to avoid | 20 DB '°', 0x7F ; Remap a few ASCII chars, to avoid |
148 | 148 |
149 ;---- LARGE font description and data ---------------------------------------- | 149 ;---- LARGE font description and data ---------------------------------------- |
150 global aa_font90_block | 150 global aa_font90_block |
151 aa_font90_block: | 151 aa_font90_block: |
152 DB ' ', 0x2F | 152 DB ' ', 0x2F |
153 DB 'm', 0x3A | |
154 DB 'f', 0x3B | |
155 DB 0 | 153 DB 0 |
156 DB aa_font90_firstChar | 154 DB aa_font90_firstChar |
157 DB aa_font90_chars | 155 DB aa_font90_chars |
158 DB 0x2F-aa_font90_firstChar | 156 DB 0x2F-aa_font90_firstChar |
159 DB aa_font90_height + 0x80 ; AA flag. | 157 DB aa_font90_height + 0x80 ; AA flag. |