mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-18 03:42:23 -07:00
25 lines
242 B
Plaintext
25 lines
242 B
Plaintext
ENTRY(_start)
|
|
|
|
SECTIONS
|
|
{
|
|
. = 0x100000;
|
|
.text BLOCK(4K) : ALIGN(4K)
|
|
{
|
|
*(.text)
|
|
}
|
|
.rodata BLOCK(4K) : ALIGN(4K)
|
|
{
|
|
*(.rodata)
|
|
}
|
|
.data BLOCK(4K) : ALIGN(4K)
|
|
{
|
|
*(.data)
|
|
}
|
|
|
|
.bss BLOCK(4K) : ALIGN(4K)
|
|
{
|
|
*(COMMON)
|
|
*(.bss)
|
|
}
|
|
}
|