12 lines
204 B
Plaintext
12 lines
204 B
Plaintext
SECTIONS
|
|
{
|
|
. = 0x8000;
|
|
.text : { *(.text.boot) *(.text) }
|
|
.rodata : { *(.rodata) }
|
|
.data : { *(.data) }
|
|
.bss : {
|
|
__bss_start = .;
|
|
*(.bss)
|
|
__bss_end = .;
|
|
}
|
|
} |