1
0
mirror of https://github.com/cc65/cc65.git synced 2025-02-07 04:31:38 +00:00

Place data into RODATA, not CODE

git-svn-id: svn://svn.cc65.org/cc65/trunk@264 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2000-08-03 10:46:57 +00:00
parent 2f65b8f5c6
commit 2ff5069436
3 changed files with 18 additions and 18 deletions

View File

@ -4,9 +4,9 @@
; Character specification table.
;
; The tables are readonly, put them into the code segment
; The tables are readonly, put them into the rodata segment
.code
.rodata
; Value that must be added to an upper case char to make it lower case
; char (example: for ASCII, this must be $E0).

View File

@ -6,9 +6,9 @@
; adapted to Atari by Christian Groessler, June 2000
;
; The tables are readonly, put them into the code segment
; The tables are readonly, put them into the rodata segment
.code
.rodata
; Value that must be added to an upper case char to make it lower case
; char (example: for ASCII, this must be $E0).

View File

@ -4,9 +4,9 @@
; Character specification table.
;
; The tables are readonly, put them into the code segment
; The tables are readonly, put them into the rodata segment
.code
.rodata
; Value that must be added to a lower case char to make it an upper case
; char (example: for ASCII, this must be $E0).