Added LOWCODE and STARTUP segments

git-svn-id: svn://svn.cc65.org/cc65/trunk@1600 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2002-11-22 23:50:45 +00:00
parent 4f93a1c99f
commit fe75b5c3f3
2 changed files with 14 additions and 4 deletions

View File

@@ -3,6 +3,8 @@ MEMORY {
RAM: start = $7FF, size = $c801, define = yes, 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;