mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
2f65b8f5c6
this now without help. git-svn-id: svn://svn.cc65.org/cc65/trunk@263 b7a2c559-68d2-44c3-8de9-860c34a00d81
16 lines
306 B
C
16 lines
306 B
C
/*
|
|
* Ullrich von Bassewitz, 11.08.1998
|
|
*
|
|
* Hex conversion table. Must be in C since the compiler will convert
|
|
* to the correct character set for the target platform.
|
|
*/
|
|
|
|
|
|
|
|
const unsigned char _hextab [16] = {
|
|
'0', '1', '2', '3', '4', '5', '6', '7',
|
|
'8', '9', 'A', 'B', 'C', 'D', 'E', 'F'
|
|
};
|
|
|
|
|