mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-12 03:05:37 +00:00
9 lines
115 B
Raku
9 lines
115 B
Raku
SECTIONS
|
|
{
|
|
. = 0x800000;
|
|
.text : { *(.text) }
|
|
. = 0x900000;
|
|
.data : { *(.data) }
|
|
/DISCARD/ : { *(.*) }
|
|
}
|