it will work (so long as it is not too close to zero, and a 4 byte aligned address of course).
14 lines
163 B
Plaintext
14 lines
163 B
Plaintext
|
|
MEMORY
|
|
{
|
|
ram : ORIGIN = 0x0000, LENGTH = 0x1000
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
.text : { *(.text*) } > ram
|
|
text_size = SIZEOF(.text);
|
|
.bss : { *(.bss*) } > ram
|
|
|
|
}
|