Add STARTUP and LOWCODE segments

git-svn-id: svn://svn.cc65.org/cc65/trunk@1582 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2002-11-22 17:43:47 +00:00
parent bbbf2ac45a
commit 2b98a26cac
4 changed files with 8 additions and 1 deletions

View file

@ -3,6 +3,8 @@ MEMORY {
RAM: start = $0fff, size = $7001, file = %O;
}
SEGMENTS {
STARTUP: load = RAM, type = wprot;
LOWCODE: load = RAM, type = wprot;
CODE: load = RAM, type = wprot;
RODATA: load = RAM, type = wprot;
DATA: load = RAM, type = rw;

View file

@ -3,6 +3,8 @@ MEMORY {
RAM: start = $03FF, size = $7BFF, file = %O;
}
SEGMENTS {
STARTUP: load = RAM, type = wprot;
LOWCODE: load = RAM, type = wprot;
CODE: load = RAM, type = wprot;
RODATA: load = RAM, type = wprot;
DATA: load = RAM, type = rw;

View file

@ -3,6 +3,8 @@ MEMORY {
RAM: start = $0fff, size = $7001, file = %O;
}
SEGMENTS {
STARTUP: load = RAM, type = wprot;
LOWCODE: load = RAM, type = wprot;
CODE: load = RAM, type = wprot;
RODATA: load = RAM, type = wprot;
DATA: load = RAM, type = rw;

View file

@ -3,7 +3,8 @@ MEMORY {
RAM: start = $FFF, size = $0E01, define = yes, file = %O;
}
SEGMENTS {
EXEHDR: load = RAM , type = wprot;
STARTUP: load = RAM , type = wprot;
LOWCODE: load = RAM, type = wprot;
CODE: load = RAM, type = wprot;
RODATA: load = RAM, type = wprot;
DATA: load = RAM, type = rw;