10 lines
137 B
Plaintext
Executable File
10 lines
137 B
Plaintext
Executable File
MEMORY
|
|
{
|
|
ram : ORIGIN = 0x0, LENGTH = 0x100000
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
.text : { *(.text*) } > ram
|
|
.bss : { *(.bss*) } > ram
|
|
} |