the mmu example. Not sure how this worked before it was set for an address of 0 not 0x8000
13 lines
137 B
Plaintext
13 lines
137 B
Plaintext
|
|
MEMORY
|
|
{
|
|
ram : ORIGIN = 0x00008000, LENGTH = 0x10000
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
.text : { *(.text*) } > ram
|
|
.bss : { *(.bss*) } > ram
|
|
}
|
|
|