annotate src/aa_fonts.asm @ 623:c40025d8e750

3.03 beta released
author heinrichsweikamp
date Mon, 03 Jun 2019 14:01:48 +0200
parents ca4556fb60b9
children cd58f7fc86db
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
heinrichsweikamp
parents:
diff changeset
1 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
2 ;
623
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
3 ; File aa_fonts.asm combined next generation V3.01.1
0
heinrichsweikamp
parents:
diff changeset
4 ;
heinrichsweikamp
parents:
diff changeset
5 ; Font-data for the anti-aliased word processor
heinrichsweikamp
parents:
diff changeset
6 ;
heinrichsweikamp
parents:
diff changeset
7 ; Copyright (c) 2011, JD Gascuel, HeinrichsWeikamp, all right reserved.
heinrichsweikamp
parents:
diff changeset
8 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
9 ; HISTORY
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
10 ; 2010-11-23 : [jDG] Creation for OSTC 1.72, with the original fonts repacked
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
11 ; 2010-12-01 : [jDG] Adding 3 bit anti-aliased fonts
0
heinrichsweikamp
parents:
diff changeset
12 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
13
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
14
623
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
15 #include "configuration.inc"
0
heinrichsweikamp
parents:
diff changeset
16
heinrichsweikamp
parents:
diff changeset
17
623
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
18 ; Attention: all fonts need to be in the same 64 kByte page
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
19 fonts_data CODE_PACK 0x10000 ; ex 0x11000
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
20
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
21 ;============================================================================
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
22
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
23
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
24 ;---- TINY font description and data ----------------------------------------
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
25 global aa_font16_block
0
heinrichsweikamp
parents:
diff changeset
26 aa_font16_block:
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
27 DB '°', 0x7F ; remap a few ASCII chars, to avoid
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
28 DB 'ö', 0x80 ; holes in the character table
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
29 DB 'ä', 0x81
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
30 DB 'ü', 0x82
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
31 DB 'ß', 0x83
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
32 DB 'é', 0x84 ; French accents
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
33 DB 'è', 0x85
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
34 DB 'ê', 0x86
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
35 DB 'ç', 0x87
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
36 DB 'á', 0x88 ; Spanish accents
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
37 DB 'í', 0x89
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
38 DB 'ó', 0x8A
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
39 DB 'ú', 0x8B
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
40 DB 'ñ', 0x8C
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
41 DB '¡', 0x8D
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
42 DB '¿', 0x8E
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
43 DB 0 ; end of translation table
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
44 DB aa_font16_firstChar ; to be subtracted
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
45 DB aa_font16_chars ; max value
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
46 DB '¿'-aa_font16_firstChar ; replace by ¿ when unknown
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
47 DB aa_font16_height + 0x80
0
heinrichsweikamp
parents:
diff changeset
48 ;
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
49 #include "../src/Fonts/aa_font16_idx.inc"
1
heinrichsweikamp
parents: 0
diff changeset
50 #include "../src/Fonts/aa_font16.inc"
0
heinrichsweikamp
parents:
diff changeset
51 aa_font16_end:
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
52 ; Attention: make sure this is coherent
0
heinrichsweikamp
parents:
diff changeset
53 if aa_font16_nbbits != 3
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
54 error TINY font should be encoded with 3 bits anti-aliasing!
0
heinrichsweikamp
parents:
diff changeset
55 endif
heinrichsweikamp
parents:
diff changeset
56
heinrichsweikamp
parents:
diff changeset
57 ;---- SMALL font description and data ----------------------------------------
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
58 global aa_font28_block
0
heinrichsweikamp
parents:
diff changeset
59 aa_font28_block:
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
60 DB '°', 0x7F ; remap a few ASCII chars, to avoid
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
61 DB 'ö', 0x80 ; holes in the character table
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
62 DB 'ä', 0x81
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
63 DB 'ü', 0x82
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
64 DB 'ß', 0x83
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
65 DB 'é', 0x84 ; French accents
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
66 DB 'è', 0x85
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
67 DB 'ê', 0x86
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
68 DB 'ç', 0x87
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
69 DB 'á', 0x88 ; Spanish accents
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
70 DB 'í', 0x89
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
71 DB 'ó', 0x8A
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
72 DB 'ú', 0x8B
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
73 DB 'ñ', 0x8C
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
74 DB '¡', 0x8D
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
75 DB '¿', 0x8E
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
76 DB '¤', 0x8F ; unused
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
77 ; 90 and 91 contain the logo
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
78 DB 0xB7,0x92 ; cursor
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
79 DB 0xB8,0x93 ; arrow down
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
80 DB 0xB9,0x94 ; arrow up
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
81 DB 0 ; end of translation table
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
82 DB aa_font28_firstChar ; to be subtracted
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
83 DB aa_font28_chars ; max value
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
84 DB 0x83-aa_font28_firstChar ; replace by ¤ when unknown
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
85 DB aa_font28_height + 0x80
0
heinrichsweikamp
parents:
diff changeset
86 ;
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
87 #include "../src/Fonts/aa_font28_idx.inc"
1
heinrichsweikamp
parents: 0
diff changeset
88 #include "../src/Fonts/aa_font28.inc"
0
heinrichsweikamp
parents:
diff changeset
89 aa_font28_end:
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
90 ; Attention: make sure this is coherent...
0
heinrichsweikamp
parents:
diff changeset
91 if aa_font28_nbbits != 3
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
92 error SMALL font should be encoded with 3 bits anti-aliasing!
0
heinrichsweikamp
parents:
diff changeset
93 endif
heinrichsweikamp
parents:
diff changeset
94
heinrichsweikamp
parents:
diff changeset
95 ;---- STD font description and data ------------------------------------------
623
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
96 global aa_font34_block
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
97 aa_font34_block:
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
98 DB '°', 0x7F ; remap a few ASCII chars, to avoid
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
99 DB 'ö', 0x80 ; holes in the character table
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
100 DB 'ä', 0x81
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
101 DB 'ü', 0x82
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
102 DB 'ß', 0x83
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
103 DB 'é', 0x84 ; French accents
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
104 DB 'è', 0x85
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
105 DB 'ê', 0x86
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
106 DB 'ç', 0x87
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
107 DB 'à', 0x88 ; Spanish accents
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
108 DB 'á', 0x89
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
109 DB 'í', 0x8A
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
110 DB 'ó', 0x8B
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
111 DB 'ú', 0x8C
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
112 DB 'ñ', 0x8D
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
113 DB '¡', 0x8E
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
114 DB '¿', 0x8F
623
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
115 ; 90, 91 contain the logo
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
116 DB 0xB7,0x92 ; cursor
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
117 ; 93 is down arrow (dive start)
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
118 ; 94 is up arrow (dive end)
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
119 ; 95 is left-right arrow (dive duration)
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
120 DB '¤', 0x96 ; unused
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
121 DB 0 ; end of translation table
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
122 DB aa_font34_firstChar ; to be subtracted
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
123 DB aa_font34_chars ; max value
623
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
124 DB 0x87-aa_font34_firstChar ; replace by ¤ when unknown
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
125 DB aa_font34_height + 0x80
0
heinrichsweikamp
parents:
diff changeset
126 ;
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
127 #include "../src/Fonts/aa_font34_idx.inc"
1
heinrichsweikamp
parents: 0
diff changeset
128 #include "../src/Fonts/aa_font34.inc"
0
heinrichsweikamp
parents:
diff changeset
129 aa_font36_end:
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
130 ; Attention: make sure this is coherent...
0
heinrichsweikamp
parents:
diff changeset
131 if aa_font34_nbbits != 3
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
132 error STANDARD font should be encoded with 3 bits anti-aliasing!
0
heinrichsweikamp
parents:
diff changeset
133 endif
heinrichsweikamp
parents:
diff changeset
134
heinrichsweikamp
parents:
diff changeset
135 ;---- MEDIUM font description and data ---------------------------------------
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
136 global aa_font48_block
0
heinrichsweikamp
parents:
diff changeset
137 aa_font48_block:
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
138 DB 0x27, 0x3B ; ' char
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
139 DB '"', 0x3C
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
140 DB 'm', 0x3D
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
141 DB 'f', 0x3E
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
142 DB ' ', 0x3F
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
143 DB 0
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
144 DB aa_font48_firstChar
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
145 DB aa_font48_chars
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
146 DB 0x3E-aa_font48_firstChar
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
147 DB aa_font48_height + 0x80 ; AA flag
0
heinrichsweikamp
parents:
diff changeset
148 ;
1
heinrichsweikamp
parents: 0
diff changeset
149 #include "../src/Fonts/aa_font48_idx.inc"
heinrichsweikamp
parents: 0
diff changeset
150 #include "../src/Fonts/aa_font48.inc"
0
heinrichsweikamp
parents:
diff changeset
151 aa_font48_end:
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
152 ; Attention: make sure this is coherent...
0
heinrichsweikamp
parents:
diff changeset
153 if aa_font48_nbbits != 3
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
154 error MEDIUM font should be encoded with 3 bits anti-aliasing!
0
heinrichsweikamp
parents:
diff changeset
155 endif
heinrichsweikamp
parents:
diff changeset
156
heinrichsweikamp
parents:
diff changeset
157 ;---- LARGE font description and data ----------------------------------------
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
158 global aa_font90_block
0
heinrichsweikamp
parents:
diff changeset
159 aa_font90_block:
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
160 DB ' ', 0x2F
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
161 DB 0
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
162 DB aa_font90_firstChar
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
163 DB aa_font90_chars
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
164 DB 0x2F-aa_font90_firstChar
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
165 DB aa_font90_height + 0x80 ; AA flag
0
heinrichsweikamp
parents:
diff changeset
166 ;
1
heinrichsweikamp
parents: 0
diff changeset
167 #include "../src/Fonts/aa_font90_idx.inc"
heinrichsweikamp
parents: 0
diff changeset
168 #include "../src/Fonts/aa_font90.inc"
0
heinrichsweikamp
parents:
diff changeset
169 aa_font90_end:
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
170 ; Attention: make sure this is coherent...
0
heinrichsweikamp
parents:
diff changeset
171 if aa_font90_nbbits != 3
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
172 error SMALL font should be encoded with 3 bits anti-aliasing!
0
heinrichsweikamp
parents:
diff changeset
173 endif
heinrichsweikamp
parents:
diff changeset
174
623
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
175 ;---- HUGE font description and data ----------------------------------------
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
176 IFDEF _huge_font
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
177
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
178 global aa_font92_block
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
179 aa_font92_block:
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
180 DB ' ', 0x2F
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
181 DB 0
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
182 DB aa_font92_firstChar
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
183 DB aa_font92_chars
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
184 DB 0x2F-aa_font92_firstChar
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
185 DB aa_font92_height + 0x80 ; AA flag
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
186 ;
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
187 #include "../src/Fonts/aa_font92_idx.inc"
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
188 #include "../src/Fonts/aa_font92.inc"
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
189 aa_font92_end:
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
190 ; Make sure this is coherent...
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
191 if aa_font92_nbbits != 3
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
192 error SMALL font should be encoded with 3bits anti-aliasing...
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
193 endif
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
194
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
195 ENDIF
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
196
0
heinrichsweikamp
parents:
diff changeset
197 ;=============================================================================
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 560
diff changeset
198 END