vulcanos/link.ld
ice-bit bec03e3d1b Added:
- TTY driver
- VGA driver
- kernel's main function
- Makefiles

*NOTE*: iceOS not works at this stage.
2019-07-03 18:12:57 +02:00

35 lines
366 B
Plaintext

ENTRY(kernel_load)
. = 0x00100000;
SECTIONS {
.boot ALIGN (0x1000):
{
*(.multiboot)
}
.text ALIGN (0x1000):
{
*(.text)
}
.rodata ALIGN (0x1000):
{
*(.rodata*)
}
.data ALIGN (0x1000):
{
*(.data)
}
.bss ALIGN (0x1000):
{
*(COMMON)
*(.bss)
}
}
end = .;