]> git.sur5r.net Git - cc65/blob - _hextab.c
d4f24b2ea71ca3ece196d2f0c7b7358c4a22f626
[cc65] / _hextab.c
1 /*
2  * Ullrich von Bassewitz, 11.08.1998
3  *
4  * Hex conversion table. Must be in C since the compiler will convert
5  * to the correct character set for the target platform.
6  */
7
8
9
10 const unsigned char _hextab [16] = {
11     '0', '1', '2', '3', '4', '5', '6', '7',
12     '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'
13 };
14
15