]> git.sur5r.net Git - cc65/blob - libsrc/geos/system/ctype.s
Minor comment adjustment.
[cc65] / libsrc / geos / system / ctype.s
1 ;
2 ; Ullrich von Bassewitz, 02.06.1998
3 ; Maciej Witkowiak, 06.04.2002 
4 ;
5 ; Character specification table.
6 ;
7
8 ; The tables are readonly, put them into the rodata segment
9
10 .rodata
11
12 ; Value that must be added to a lower case char to make it an upper case
13 ; char (example: for ASCII, this must be $E0).
14
15
16         .export         __cdiff
17
18 __cdiff:
19         .byte   $e0
20
21
22 ; The following 256 byte wide table specifies attributes for the isxxx type
23 ; of functions. Doing it by a table means some overhead in space, but it
24 ; has major advantages:
25 ;
26 ;   * It is fast. If it were'nt for the slow parameter passing of cc65, one
27 ;     could even define macros for the isxxx functions (this is usually
28 ;     done on other platforms).
29 ;
30 ;   * It is highly portable. The only unportable part is the table itself,
31 ;     all real code goes into the common library.
32 ;
33 ;   * We save some code in the isxxx functions.
34 ;
35 ;
36 ; Bit assignments:
37 ;
38 ;   0 - Lower case char
39 ;   1 - Upper case char
40 ;   2 - Numeric digit
41 ;   3 - Hex digit (both, lower and upper)
42 ;   4 - Control character
43 ;   5 - The space character itself
44 ;   6 - Other whitespace (that is: '\f', '\n', '\r', '\t' and '\v')
45 ;   7 - Space or tab character
46
47
48 ; The table is taken from Craig S. Bruce technical docs for the ACE os
49
50         .export         __ctype
51
52 __ctype:
53         .byte   $10     ;   0/00 ___rvs_@___
54         .byte   $10     ;   1/01 ___rvs_a___
55         .byte   $10     ;   2/02 ___rvs_b___
56         .byte   $10     ;   3/03 ___rvs_c___
57         .byte   $10     ;   4/04 ___rvs_d___
58         .byte   $10     ;   5/05 ___rvs_e___
59         .byte   $10     ;   6/06 ___rvs_f___
60         .byte   $10     ;   7/07 _BEL/rvs_g_
61         .byte   $10     ;   8/08 ___rvs_h___
62         .byte   $D0     ;   9/09 _TAB/rvs_i_
63         .byte   $50     ;  10/0a _BOL/rvs_j_
64         .byte   $10     ;  11/0b ___rvs_k___
65         .byte   $10     ;  12/0c ___rvs_l___
66         .byte   $50     ;  13/0d _CR_/rvs_m_
67         .byte   $10     ;  14/0e ___rvs_n___
68         .byte   $10     ;  15/0f ___rvs_o___
69         .byte   $10     ;  16/10 ___rvs_p___
70         .byte   $50     ;  17/11 _VT_/rvs_q_
71         .byte   $10     ;  18/12 ___rvs_r___
72         .byte   $10     ;  19/13 ___rvs_s___
73         .byte   $50     ;  20/14 _BS_/rvs_t_
74         .byte   $10     ;  21/15 ___rvs_u___
75         .byte   $10     ;  22/16 ___rvs_v___
76         .byte   $10     ;  23/17 ___rvs_w___
77         .byte   $10     ;  24/18 ___rvs_x___
78         .byte   $10     ;  25/19 ___rvs_y___
79         .byte   $10     ;  26/1a ___rvs_z___
80         .byte   $10     ;  27/1b ___rvs_[___
81         .byte   $10     ;  28/1c ___rvs_\___
82         .byte   $10     ;  29/1d ___rvs_]___
83         .byte   $10     ;  30/1e ___rvs_^___
84         .byte   $10     ;  31/1f _rvs_under_
85         .byte   $A0     ;  32/20 ___SPACE___
86         .byte   $00     ;  33/21 _____!_____
87         .byte   $00     ;  34/22 _____"_____
88         .byte   $00     ;  35/23 _____#_____
89         .byte   $00     ;  36/24 _____$_____
90         .byte   $00     ;  37/25 _____%_____
91         .byte   $00     ;  38/26 _____&_____
92         .byte   $00     ;  39/27 _____'_____
93         .byte   $00     ;  40/28 _____(_____
94         .byte   $00     ;  41/29 _____)_____
95         .byte   $00     ;  42/2a _____*_____
96         .byte   $00     ;  43/2b _____+_____
97         .byte   $00     ;  44/2c _____,_____
98         .byte   $00     ;  45/2d _____-_____
99         .byte   $00     ;  46/2e _____._____
100         .byte   $00     ;  47/2f _____/_____
101         .byte   $0C     ;  48/30 _____0_____
102         .byte   $0C     ;  49/31 _____1_____
103         .byte   $0C     ;  50/32 _____2_____
104         .byte   $0C     ;  51/33 _____3_____
105         .byte   $0C     ;  52/34 _____4_____
106         .byte   $0C     ;  53/35 _____5_____
107         .byte   $0C     ;  54/36 _____6_____
108         .byte   $0C     ;  55/37 _____7_____
109         .byte   $0C     ;  56/38 _____8_____
110         .byte   $0C     ;  57/39 _____9_____
111         .byte   $00     ;  58/3a _____:_____
112         .byte   $00     ;  59/3b _____;_____
113         .byte   $00     ;  60/3c _____<_____
114         .byte   $00     ;  61/3d _____=_____
115         .byte   $00     ;  62/3e _____>_____
116         .byte   $00     ;  63/3f _____?_____
117
118         .byte   $00     ;  64/40 _____@_____
119         .byte   $09     ;  65/41 _____a_____
120         .byte   $09     ;  66/42 _____b_____
121         .byte   $09     ;  67/43 _____c_____
122         .byte   $09     ;  68/44 _____d_____
123         .byte   $09     ;  69/45 _____e_____
124         .byte   $09     ;  70/46 _____f_____
125         .byte   $01     ;  71/47 _____g_____
126         .byte   $01     ;  72/48 _____h_____
127         .byte   $01     ;  73/49 _____i_____
128         .byte   $01     ;  74/4a _____j_____
129         .byte   $01     ;  75/4b _____k_____
130         .byte   $01     ;  76/4c _____l_____
131         .byte   $01     ;  77/4d _____m_____
132         .byte   $01     ;  78/4e _____n_____
133         .byte   $01     ;  79/4f _____o_____
134         .byte   $01     ;  80/50 _____p_____
135         .byte   $01     ;  81/51 _____q_____
136         .byte   $01     ;  82/52 _____r_____
137         .byte   $01     ;  83/53 _____s_____
138         .byte   $01     ;  84/54 _____t_____
139         .byte   $01     ;  85/55 _____u_____
140         .byte   $01     ;  86/56 _____v_____
141         .byte   $01     ;  87/57 _____w_____
142         .byte   $01     ;  88/58 _____x_____
143         .byte   $01     ;  89/59 _____y_____
144         .byte   $01     ;  90/5a _____z_____
145         .byte   $00     ;  91/5b _____[_____
146         .byte   $00     ;  92/5c _____\_____
147         .byte   $00     ;  93/5d _____]_____
148         .byte   $00     ;  94/5e _____^_____
149         .byte   $00     ;  95/5f _UNDERLINE_
150
151         .byte   $00     ;  96/60 _A`_grave__
152         .byte   $0a     ;  97/61 _A'_acute__
153         .byte   $0a     ;  98/62 _A^_circum_
154         .byte   $0a     ;  99/63 _A~_tilde__
155         .byte   $0a     ; 100/64 _A"_dieres_
156         .byte   $0a     ; 101/65 _A__ring___
157         .byte   $0a     ; 102/66 _AE________
158         .byte   $02     ; 103/67 _C,cedilla_
159         .byte   $02     ; 104/68 _E`_grave__
160         .byte   $02     ; 105/69 _E'_acute__
161         .byte   $02     ; 106/6a _E^_circum_
162         .byte   $02     ; 107/6b _E"_dieres_
163         .byte   $02     ; 108/6c _I`_grave__
164         .byte   $02     ; 109/6d _I'_acute__
165         .byte   $02     ; 110/6e _I^_circum_
166         .byte   $02     ; 111/6f _I"_dieres_
167         .byte   $02     ; 112/70 _D-_Eth_lr_
168         .byte   $02     ; 113/71 _N~_tilde__
169         .byte   $02     ; 114/72 _O`_grave__
170         .byte   $02     ; 115/73 _O'_acute__
171         .byte   $02     ; 116/74 _O^_circum_
172         .byte   $02     ; 117/75 _O~_tilde__
173         .byte   $02     ; 118/76 _O"_dieres_
174         .byte   $02     ; 119/77 __multiply_
175         .byte   $02     ; 120/78 _O/_slash__
176         .byte   $02     ; 121/79 _U`_grave__
177         .byte   $02     ; 122/7a _U'_acute__
178         .byte   $00     ; 123/7b _U^_circum_
179         .byte   $00     ; 124/7c _U"_dieres_
180         .byte   $00     ; 125/7d _Y'_acute__
181         .byte   $00     ; 126/7e _cap_thorn_
182         .byte   $00     ; 127/7f _Es-sed_B__
183
184         .byte   $00     ; 128/80 __bullet___
185         .byte   $00     ; 129/81 __v_line___
186         .byte   $00     ; 130/82 __h_line___
187         .byte   $00     ; 131/83 ___cross___
188         .byte   $00     ; 132/84 _tl_corner_
189         .byte   $00     ; 133/85 _tr_corner_
190         .byte   $00     ; 134/86 _bl_corner_
191         .byte   $00     ; 135/87 _br_corner_
192         .byte   $00     ; 136/88 ___l_tee___
193         .byte   $00     ; 137/89 ___r_tee___
194         .byte   $00     ; 138/8a ___t_tee___
195         .byte   $00     ; 139/8b ___b_tee___
196         .byte   $00     ; 140/8c ___heart___
197         .byte   $00     ; 141/8d __diamond__
198         .byte   $00     ; 142/8e ___club____
199         .byte   $00     ; 143/8f ___spade___
200         .byte   $00     ; 144/90 _s_circle__
201         .byte   $00     ; 145/91 __circle___
202         .byte   $00     ; 146/92 ___pound___
203         .byte   $00     ; 147/93 _CLS/check_
204         .byte   $00     ; 148/94 ____pi_____
205         .byte   $00     ; 149/95 ____+/-____
206         .byte   $00     ; 150/96 __divide___
207         .byte   $00     ; 151/97 __degree___
208         .byte   $00     ; 152/98 _c_checker_
209         .byte   $00     ; 153/99 _f_checker_
210         .byte   $00     ; 154/9a _solid_sq__
211         .byte   $00     ; 155/9b __cr_char__
212         .byte   $00     ; 156/9c _up_arrow__
213         .byte   $00     ; 157/9d _down_arro_
214         .byte   $00     ; 158/9e _left_arro_
215         .byte   $00     ; 159/9f _right_arr_
216         .byte   $00     ; 160/a0 _req space_
217         .byte   $00     ; 161/a1 _!_invertd_
218         .byte   $00     ; 162/a2 ___cent____
219         .byte   $00     ; 163/a3 ___pound___
220         .byte   $00     ; 164/a4 __currency_
221         .byte   $00     ; 165/a5 ____yen____
222         .byte   $00     ; 166/a6 _|_broken__
223         .byte   $00     ; 167/a7 __section__
224         .byte   $00     ; 168/a8 __umulaut__
225         .byte   $00     ; 169/a9 _copyright_
226         .byte   $00     ; 170/aa __fem_ord__
227         .byte   $00     ; 171/ab _l_ang_quo_
228         .byte   $00     ; 172/ac ____not____
229         .byte   $00     ; 173/ad _syl_hyphn_
230         .byte   $00     ; 174/ae _registerd_
231         .byte   $00     ; 175/af _overline__
232         .byte   $00     ; 176/b0 __degrees__
233         .byte   $00     ; 177/b1 ____+/-____
234         .byte   $00     ; 178/b2 _2_supersc_
235         .byte   $00     ; 179/b3 _3_supersc_
236         .byte   $00     ; 180/b4 ___acute___
237         .byte   $00     ; 181/b5 ____mu_____
238         .byte   $00     ; 182/b6 _paragraph_
239         .byte   $00     ; 183/b7 __mid_dot__
240         .byte   $00     ; 184/b8 __cedilla__
241         .byte   $00     ; 185/b9 _1_supersc_
242         .byte   $00     ; 186/ba __mas_ord__
243         .byte   $00     ; 187/bb _r_ang_quo_
244         .byte   $00     ; 188/bc ____1/4____
245         .byte   $00     ; 189/bd ____1/2____
246         .byte   $00     ; 190/be ____3/4____
247         .byte   $00     ; 191/bf _?_invertd_
248
249         .byte   $00     ; 192/c0 _____`_____
250         .byte   $00     ; 193/c1 _____A_____
251         .byte   $00     ; 194/c2 _____B_____
252         .byte   $00     ; 195/c3 _____C_____
253         .byte   $00     ; 196/c4 _____D_____
254         .byte   $00     ; 197/c5 _____E_____
255         .byte   $00     ; 198/c6 _____F_____
256         .byte   $00     ; 199/c7 _____G_____
257         .byte   $00     ; 200/c8 _____H_____
258         .byte   $00     ; 201/c9 _____I_____
259         .byte   $00     ; 202/ca _____J_____
260         .byte   $00     ; 203/cb _____K_____
261         .byte   $00     ; 204/cc _____L_____
262         .byte   $00     ; 205/cd _____M_____
263         .byte   $00     ; 206/ce _____N_____
264         .byte   $00     ; 207/cf _____O_____
265         .byte   $00     ; 208/d0 _____P_____
266         .byte   $00     ; 209/d1 _____Q_____
267         .byte   $00     ; 210/d2 _____R_____
268         .byte   $00     ; 211/d3 _____S_____
269         .byte   $00     ; 212/d4 _____T_____
270         .byte   $00     ; 213/d5 _____U_____
271         .byte   $00     ; 214/d6 _____V_____
272         .byte   $00     ; 215/d7 _____W_____
273         .byte   $00     ; 216/d8 _____X_____
274         .byte   $00     ; 217/d9 _____Y_____
275         .byte   $00     ; 218/da _____Z_____
276         .byte   $00     ; 219/db _____{_____
277         .byte   $00     ; 220/dc _____|_____
278         .byte   $00     ; 221/dd _____}_____
279         .byte   $00     ; 222/de _____~_____
280         .byte   $00     ; 223/df ___HOUSE___
281         .byte   $00     ; 224/e0 _a`_grave__
282         .byte   $00     ; 225/e1 _a'_acute__
283         .byte   $00     ; 226/e2 _a^_circum_
284         .byte   $00     ; 227/e3 _a~_tilde__
285         .byte   $00     ; 228/e4 _a"_dieres_
286         .byte   $00     ; 229/e5 _a__ring___
287         .byte   $00     ; 230/e6 _ae________
288         .byte   $00     ; 231/e7 _c,cedilla_
289         .byte   $00     ; 232/e8 _e`_grave__
290         .byte   $00     ; 233/e9 _e'_acute__
291         .byte   $00     ; 234/ea _e^_circum_
292         .byte   $00     ; 235/eb _e"_dieres_
293         .byte   $00     ; 236/ec _i`_grave__
294         .byte   $00     ; 237/ed _i'_acute__
295         .byte   $00     ; 238/ee _i^_circum_
296         .byte   $00     ; 239/ef _i"_dieres_
297         .byte   $00     ; 240/f0 _o^x_Eth_s_
298         .byte   $00     ; 241/f1 _n~_tilda__
299         .byte   $00     ; 242/f2 _o`_grave__
300         .byte   $00     ; 243/f3 _o'_acute__
301         .byte   $00     ; 244/f4 _o^_circum_
302         .byte   $00     ; 245/f5 _o~_tilde__
303         .byte   $00     ; 246/f6 _o"_dieres_
304         .byte   $00     ; 247/f7 __divide___
305         .byte   $00     ; 248/f8 _o/_slash__
306         .byte   $00     ; 249/f9 _u`_grave__
307         .byte   $00     ; 250/fa _u'_acute__
308         .byte   $00     ; 251/fb _u^_circum_
309         .byte   $00     ; 252/fc _u"_dieres_
310         .byte   $00     ; 253/fd _y'_acute__
311         .byte   $00     ; 254/fe _sm_thorn__
312         .byte   $00     ; 255/ff _y"_dieres_
313