mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-01 11:52:47 +00:00
17 lines
280 B
Raku
17 lines
280 B
Raku
|
|
MEMORY
|
|
{
|
|
rom (rx) : ORIGIN = 0x100, LENGTH = 0x100
|
|
ram (rwx) : ORIGIN = 0x200, LENGTH = 0x100
|
|
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
.text : {*(.text .text.*)} >rom
|
|
.data : {data_load = LOADADDR (.data);
|
|
data_start = ADDR (.data);
|
|
*(.data .data.*)} >ram AT>rom
|
|
/DISCARD/ : { *(.*) }
|
|
}
|