blob: 0ed3063b358a48a1be65986fad390080747dc583 [file] [log] [blame]
SECTIONS
{
. = 16K;
stext = .;
.text : { *(.init) *(.text) }
. = ALIGN(4K);
.data : { *(.data) *(.rodata*) }
. = ALIGN(16);
.bss : { *(.bss) }
edata = .;
}
ENTRY(start)