mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-23 15:32:26 +00:00
17 lines
187 B
Raku
17 lines
187 B
Raku
|
|
SECTIONS
|
|
{
|
|
reset - 4 :
|
|
{
|
|
*(reset)
|
|
}
|
|
boot - 0x1000 :
|
|
{
|
|
*(boot)
|
|
} = 0xffff
|
|
. = + SIZEOF_HEADERS;
|
|
.text : { *(.text) }
|
|
.data : { *(.data) }
|
|
.bss : { *(.bss) }
|
|
}
|