blob: 27ea5bbe049c387c2c2d1fa984147d778f47a034 [file] [log] [blame]
SECTIONS {
. = 0x100000;
.text : {
__load_st = .;
*(.head)
*(.text)
}
.rodata : {
*(.rodata)
}
.data : {
*(.data*)
__load_en = .;
}
.bss : {
*(.bss)
__bss_en = .;
}
}