Files
x86-bare-metal-examples/a.ld
2015-09-06 16:22:10 +02:00

10 lines
148 B
Plaintext

SECTIONS
{
/* We could also pass the -Ttext 0x7C00 to as instead of doing this. */
. = 0x7c00;
bootsec :
{
*(.text)
}
}