mirror of
https://github.com/wichtounet/thor-os.git
synced 2025-09-08 11:58:36 -04:00
29 lines
296 B
Plaintext
29 lines
296 B
Plaintext
ENTRY(main)
|
|
|
|
SECTIONS {
|
|
. = 0x8000400000;
|
|
|
|
.text BLOCK(4096) : ALIGN(4096)
|
|
{
|
|
*(.text)
|
|
*(.text*)
|
|
}
|
|
|
|
. = 0x8000600000;
|
|
|
|
.data BLOCK(4096) : ALIGN(4096)
|
|
{
|
|
*(.data)
|
|
}
|
|
|
|
.rodata BLOCK(4096) : ALIGN(4096)
|
|
{
|
|
*(.rodata)
|
|
*(.rodata*)
|
|
}
|
|
|
|
.bss BLOCK(4096) : ALIGN(4096)
|
|
{
|
|
*(.bss)
|
|
}
|
|
} |