mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-02 18:53:22 +00:00
12 lines
177 B
Plaintext
12 lines
177 B
Plaintext
MEMORY
|
|
{
|
|
x0(xrw): ORIGIN = 0x0, LENGTH = 8
|
|
x1(xrw): ORIGIN = 0xC, LENGTH = 8
|
|
}
|
|
SECTIONS
|
|
{
|
|
.a0 : { *(.data.a0) } > x0
|
|
.a1 : { *(.data.a1) } > x1
|
|
/DISCARD/ : { *(*) }
|
|
}
|