xnoe-os/src/program/program.ld

14 lines
228 B
Plaintext

OUTPUT_FORMAT(binary)
OUTPUT_ARCH(i386:i386)
OUTPUT(build/program/program.bin)
SECTIONS {
. = 0x20;
.text : {
build/program_code_entry.o(.text)
build/program/program.o(.text)
build/common/common.o(.text)
}
}