Add character RAM
git-svn-id: svn://svn.cc65.org/cc65/trunk@953 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
c143007420
commit
afb63ff31c
1 changed files with 3 additions and 2 deletions
|
@ -1,7 +1,8 @@
|
|||
MEMORY {
|
||||
ZP: start = $02, size = $1A, type = rw;
|
||||
RAM: start = $0001, size = $F3FF, file = %O;
|
||||
VIDRAM: start = $F400, size = $0400, define = yes, file = "";
|
||||
RAM: start = $0001, size = $DFFF, file = %O;
|
||||
CHARRAM: start = $E000, size = $1000, define = yes, file = "";
|
||||
VIDRAM: start = $F000, size = $0400, define = yes, file = "";
|
||||
}
|
||||
SEGMENTS {
|
||||
CODE: load = RAM, type = wprot;
|
||||
|
|
Loading…
Add table
Reference in a new issue