mirror of
https://github.com/wichtounet/thor-os.git
synced 2025-08-03 17:26:08 -04:00
31 lines
317 B
Plaintext
31 lines
317 B
Plaintext
ENTRY(_start)
|
|
|
|
SECTIONS {
|
|
. = 0x8000400000;
|
|
|
|
.text BLOCK(4096) : ALIGN(4096)
|
|
{
|
|
*(.start)
|
|
*(.text)
|
|
*(.text*)
|
|
}
|
|
|
|
. = 0x8000600000;
|
|
|
|
.data BLOCK(4096) : ALIGN(4096)
|
|
{
|
|
*(.data)
|
|
}
|
|
|
|
.rodata BLOCK(4096) : ALIGN(4096)
|
|
{
|
|
*(.rodata)
|
|
*(.rodata*)
|
|
}
|
|
|
|
.bss BLOCK(4096) : ALIGN(4096)
|
|
{
|
|
*(.bss)
|
|
}
|
|
}
|