mirror of
https://github.com/cc65/cc65.git
synced 2025-08-15 06:27:36 +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:
@@ -4,9 +4,9 @@
|
|||||||
; Character specification table.
|
; 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
|
; Value that must be added to an upper case char to make it lower case
|
||||||
; char (example: for ASCII, this must be $E0).
|
; char (example: for ASCII, this must be $E0).
|
||||||
|
@@ -6,9 +6,9 @@
|
|||||||
; adapted to Atari by Christian Groessler, June 2000
|
; 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
|
; Value that must be added to an upper case char to make it lower case
|
||||||
; char (example: for ASCII, this must be $E0).
|
; char (example: for ASCII, this must be $E0).
|
||||||
|
@@ -4,9 +4,9 @@
|
|||||||
; Character specification table.
|
; 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
|
; Value that must be added to a lower case char to make it an upper case
|
||||||
; char (example: for ASCII, this must be $E0).
|
; char (example: for ASCII, this must be $E0).
|
||||||
|
Reference in New Issue
Block a user