Replace obsolete "wprot" segment type by "ro".

git-svn-id: svn://svn.cc65.org/cc65/trunk@3357 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2005-01-08 21:08:04 +00:00
parent 696f664050
commit e128341854
16 changed files with 56 additions and 56 deletions

View File

@@ -3,9 +3,9 @@ MEMORY {
COMBINED: start = $0000, size = $FFFF, file = %O;
}
SEGMENTS {
JUMPTABLE: load = COMBINED, type = wprot;
CODE: load = COMBINED, type = wprot;
RODATA: load = COMBINED, type = wprot;
JUMPTABLE: load = COMBINED, type = ro;
CODE: load = COMBINED, type = ro;
RODATA: load = COMBINED, type = ro;
DATA: load = COMBINED, type = rw, define = yes;
BSS: load = COMBINED, type = bss, define = yes;
ZEROPAGE: load = ZP, type = zp;