mirror of
https://github.com/hlandau/tags-active-demo.git
synced 2025-05-09 21:07:23 +00:00
43 lines
514 B
Plaintext
43 lines
514 B
Plaintext
ENTRY(_start)
|
|
SECTIONS {
|
|
. = ALIGN(0x10);
|
|
.text : AT(0x0) {
|
|
_start = .;
|
|
*(.text)
|
|
*(.text.*)
|
|
}
|
|
.rodata : {
|
|
*(.rodata .rodata.*)
|
|
}
|
|
.data : {
|
|
*(.data*)
|
|
*(.force.data)
|
|
*(.toc1)
|
|
*(.branch_lt)
|
|
}
|
|
. = ALIGN(0x10);
|
|
.opd : {
|
|
*(.opd)
|
|
}
|
|
. = ALIGN(0x100);
|
|
.got : {
|
|
__toc_start = . + 0x8000;
|
|
*(.got)
|
|
*(.toc)
|
|
}
|
|
.bss : {
|
|
_bss_start = .;
|
|
*(.bss*)
|
|
*(.sbss*)
|
|
*(COMMON)
|
|
_bss_end = .;
|
|
}
|
|
.stacks : {
|
|
. = ALIGN(4096);
|
|
_stack_start = .;
|
|
. += 4096;
|
|
_stack_top = .;
|
|
}
|
|
_end = .;
|
|
}
|