32bit (#2)
Reviewed-on: #2 Co-authored-by: Byron Lathi <byron@byronlathi.com> Co-committed-by: Byron Lathi <byron@byronlathi.com>
This commit was merged in pull request #2.
This commit is contained in:
13
sim/asm_source/memory.cfg
Normal file
13
sim/asm_source/memory.cfg
Normal file
@@ -0,0 +1,13 @@
|
||||
MEMORY {
|
||||
ZP: start = $0, size = $100;
|
||||
RAM: start = $fffff000, size = $1000, file=%O;
|
||||
}
|
||||
|
||||
SEGMENTS {
|
||||
ZEROPAGE: load = ZP, type = zp;
|
||||
CODE: load = RAM, type = ro;
|
||||
RODATA: load = RAM, type = ro;
|
||||
DATA: load = RAM, type = rw;
|
||||
BSS: load = RAM, type = bss, define = yes;
|
||||
VECTORS: load = RAM, type = ro, start = $FFFFFFF4;
|
||||
}
|
||||
Reference in New Issue
Block a user