loadwarka/src/x86_stage2.ld

13 lines
107 B
Plaintext

OUTPUT_ARCH("i386")
ENTRY(_start)
SECTIONS
{
. = 0x7e00;
.text :
{
*(.text);
}
}