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:
parent
bbbf2ac45a
commit
2b98a26cac
4 changed files with 8 additions and 1 deletions
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue