blob: be84ec332cf7b2f8970cdf4d54e83e5f95669ff4 [file] [log] [blame]
OUTPUT_ARCH(i386)
SECTIONS
{
. = 1024K - 64K;
stext = .;
.text : { *(.text.startup) *(.text) *(.text.*) }
. = ALIGN(16);
.data : { *(.data) }
. = ALIGN(16);
.rodata : { *(.rodata) }
. = ALIGN(16);
.bss : { *(.bss) }
. = ALIGN(16);
edata = .;
. = 1024K - 128;
.init : {
*(.init);
. = 128 - 16;
*(.resetvector);
. = 128;
}
}
ENTRY(main)