mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-27 14:50:23 +00:00
12 lines
170 B
Raku
12 lines
170 B
Raku
MEMORY
|
|
{
|
|
ram : ORIGIN = 0x10000, LENGTH = 0x10000
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
.text : {*(.text)} > ram AT> ram
|
|
.data : ALIGN (16) {*(.data)} > ram AT> ram
|
|
/DISCARD/ : {*(*)}
|
|
}
|