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

@@ -4,13 +4,13 @@ MEMORY {
RAM: start = $2E00, size = $8E20, file = %O; # $8E20: matches upper bound $BC1F
}
SEGMENTS {
EXEHDR: load = HEADER, type = wprot;
CODE: load = RAM, type = wprot, define = yes;
RODATA: load = RAM, type = wprot;
EXEHDR: load = HEADER, type = ro;
CODE: load = RAM, type = ro, define = yes;
RODATA: load = RAM, type = ro;
DATA: load = RAM, type = rw;
BSS: load = RAM, type = bss, define = yes;
ZEROPAGE: load = ZP, type = zp;
AUTOSTRT: load = RAM, type = wprot;
AUTOSTRT: load = RAM, type = ro;
}
FEATURES {
CONDES: segment = RODATA,