29 lines
309 B
Plaintext
29 lines
309 B
Plaintext
ENTRY(_start)
|
|
|
|
SECTIONS {
|
|
. = 0x400000;
|
|
|
|
.text ALIGN(4K):
|
|
{
|
|
*(.text .text*)
|
|
}
|
|
|
|
.rodata (READONLY): ALIGN(4K)
|
|
{
|
|
*(.rodata .rodata*)
|
|
}
|
|
|
|
.data ALIGN(4K):
|
|
{
|
|
*(.data .data*)
|
|
}
|
|
|
|
.bss ALIGN(4K):
|
|
{
|
|
_bss_start = .;
|
|
*(.bss .bss*)
|
|
. = ALIGN(4K);
|
|
_bss_end = .;
|
|
}
|
|
}
|