24 lines
288 B
Text
Executable file
24 lines
288 B
Text
Executable file
ENTRY(_start)
|
|
|
|
SECTIONS
|
|
{
|
|
. = 1M;
|
|
|
|
.text BLOCK (4K) : ALIGN (4K) {
|
|
*(.multiboot)
|
|
*(.text)
|
|
}
|
|
|
|
.rodata BLOCK (4K) : ALIGN (4K) {
|
|
*(.rodata)
|
|
}
|
|
|
|
.data BLOCK (4K) : ALIGN (4K) {
|
|
*(.data)
|
|
}
|
|
|
|
.bss BLOCK (4K) : ALIGN (4K) {
|
|
*(COMMON)
|
|
*(.bss)
|
|
}
|
|
}
|