cos2000v2/programs/linker.lds

13 lines
169 B
Plaintext
Raw Permalink Normal View History

OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
OUTPUT_ARCH(i386)
ENTRY(main)
SECTIONS
{
. = 0x40000000;
.text ALIGN(16): {
*(.text)
}
}