mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-30 19:53:46 +00:00
24 lines
314 B
Raku
24 lines
314 B
Raku
SECTIONS
|
|
{
|
|
. = 0x0;
|
|
.text :
|
|
{
|
|
*(.text)
|
|
}
|
|
|
|
. = 0x700;
|
|
.text1 :
|
|
{
|
|
*(.text1)
|
|
}
|
|
. = 0x8100;
|
|
.bss :
|
|
{
|
|
*(.bss)
|
|
}
|
|
.data :
|
|
{
|
|
*(.data)
|
|
}
|
|
}
|