12 lines
105 B
Plaintext
12 lines
105 B
Plaintext
|
SECTIONS {
|
||
|
.memory : {
|
||
|
. = 0x000000;
|
||
|
*(.init);
|
||
|
*(.text);
|
||
|
*(*);
|
||
|
. = ALIGN(4);
|
||
|
end = .;
|
||
|
}
|
||
|
}
|
||
|
|