bec03e3d1b
- TTY driver - VGA driver - kernel's main function - Makefiles *NOTE*: iceOS not works at this stage.
35 lines
366 B
Plaintext
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 = .; |