Files
low-level-programming/linker.ld
greg 35238cff2d Bare-metal gamarjoba munde
just clears the screen
2015-09-17 00:16:55 -07:00

11 lines
190 B
Plaintext

ENTRY (boot)
SECTIONS
{
.multiboot 0x00100000 : { *(.multiboot) }
.text ALIGN(0x1000) : { *(.text) }
.data ALIGN(0x1000) : { *(.data) }
.bss ALIGN(0x1000) : { *(.bss) }
}