comparison src/aa_fonts.asm @ 628:cd58f7fc86db

3.05 stable work
author heinrichsweikamp
date Thu, 19 Sep 2019 12:01:29 +0200
parents c40025d8e750
children 185ba2f91f59
comparison
equal deleted inserted replaced
627:bf5fee575701 628:cd58f7fc86db
1 ;============================================================================= 1 ;=============================================================================
2 ; 2 ;
3 ; File aa_fonts.asm combined next generation V3.01.1 3 ; File aa_fonts.asm combined next generation V3.03.5
4 ; 4 ;
5 ; Font-data for the anti-aliased word processor 5 ; Font-data for the anti-aliased word processor
6 ; 6 ;
7 ; Copyright (c) 2011, JD Gascuel, HeinrichsWeikamp, all right reserved. 7 ; Copyright (c) 2011, JD Gascuel, HeinrichsWeikamp, all right reserved.
8 ;============================================================================= 8 ;=============================================================================
171 if aa_font90_nbbits != 3 171 if aa_font90_nbbits != 3
172 error SMALL font should be encoded with 3 bits anti-aliasing! 172 error SMALL font should be encoded with 3 bits anti-aliasing!
173 endif 173 endif
174 174
175 ;---- HUGE font description and data ---------------------------------------- 175 ;---- HUGE font description and data ----------------------------------------
176 IFDEF _huge_font
177
178 global aa_font92_block 176 global aa_font92_block
179 aa_font92_block: 177 aa_font92_block:
180 DB ' ', 0x2F 178 DB ' ', 0x2F
181 DB 0 179 DB 0
182 DB aa_font92_firstChar 180 DB aa_font92_firstChar
190 ; Make sure this is coherent... 188 ; Make sure this is coherent...
191 if aa_font92_nbbits != 3 189 if aa_font92_nbbits != 3
192 error SMALL font should be encoded with 3bits anti-aliasing... 190 error SMALL font should be encoded with 3bits anti-aliasing...
193 endif 191 endif
194 192
195 ENDIF
196
197 ;============================================================================= 193 ;=============================================================================
198 END 194 END