mirror of
https://github.com/gbowne1/ClassicOS.git
synced 2025-07-03 09:42:57 -07:00
28 lines
365 B
Plaintext
28 lines
365 B
Plaintext
ENTRY(start)
|
|
|
|
SECTIONS {
|
|
. = 1M;
|
|
|
|
.text : {
|
|
*(.multiboot)
|
|
*(.text*)
|
|
}
|
|
|
|
.rodata : { *(.rodata*) }
|
|
.data : { *(.data*) }
|
|
.bss : {
|
|
*(.bss*)
|
|
*(COMMON)
|
|
}
|
|
|
|
.stack (NOLOAD) : {
|
|
. = ALIGN(4);
|
|
. = . + 0x1000;
|
|
}
|
|
|
|
.heap (NOLOAD) : {
|
|
. = ALIGN(4);
|
|
. = . + 0x10000;
|
|
}
|
|
}
|