]> git.sur5r.net Git - cc65/blobdiff - libsrc/common/_hextab.c
The spans do now contain the size of a span, no longer the end offset.
[cc65] / libsrc / common / _hextab.c
index fc82f17d7752d4024263cf3790138890ed763ac1..d4f24b2ea71ca3ece196d2f0c7b7358c4a22f626 100644 (file)
@@ -7,9 +7,6 @@
 
 
 
-/* Data in this module is read-only, put it into the RODATA segment */
-#pragma dataseg ("RODATA")
-
 const unsigned char _hextab [16] = {
     '0', '1', '2', '3', '4', '5', '6', '7',
     '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'