mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-11 19:49:32 +00:00
13 lines
116 B
Perl
13 lines
116 B
Perl
|
ENTRY(RAM)
|
||
|
|
||
|
MEMORY
|
||
|
{
|
||
|
ram (rwx) : ORIGIN = 0, LENGTH = 0x1000000
|
||
|
}
|
||
|
|
||
|
SECTIONS
|
||
|
{
|
||
|
.text : { } >ram
|
||
|
}
|
||
|
RAM = ADDR(ram);
|