mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-24 23:32:06 +00:00
13 lines
213 B
Raku
13 lines
213 B
Raku
MEMORY
|
|
{
|
|
ram : ORIGIN = 0x10000, LENGTH = 0x10000
|
|
rom : ORIGIN = 0x20000, LENGTH = 0x10000
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
.text : {*(.text)} > ram AT> rom
|
|
.data : ALIGN (16) {*(.data)} > ram AT> rom
|
|
/DISCARD/ : {*(*)}
|
|
}
|