20 lines
No EOL
209 B
Text
20 lines
No EOL
209 B
Text
ENTRY(_start)
|
|
|
|
SECTIONS {
|
|
. = 0x8000;
|
|
|
|
.text : {
|
|
*(.text)
|
|
}
|
|
|
|
.data : {
|
|
*(.data)
|
|
}
|
|
|
|
.bss : {
|
|
*(.bss COMMON)
|
|
}
|
|
|
|
. = ALIGN(8);
|
|
stack_top = . + 0x1000;
|
|
} |