mirror of
https://github.com/Polprzewodnikowy/SummerCart64.git
synced 2024-11-23 22:29:15 +01:00
26 lines
514 B
Plaintext
26 lines
514 B
Plaintext
MEMORY
|
|
{
|
|
ram (rwx) : org = 0x00000000, len = 16k
|
|
}
|
|
|
|
__ram_size = LENGTH(ram);
|
|
__stack_pointer = ORIGIN(ram) + LENGTH(ram) - 16;
|
|
|
|
ENTRY(reset_handler)
|
|
|
|
SECTIONS
|
|
{
|
|
.ram :
|
|
{
|
|
. = ALIGN(4);
|
|
*(.text.startup);
|
|
. = ALIGN(4);
|
|
*(.text .text* .rodata .rodata* .srodata .srodata*);
|
|
. = ALIGN(4);
|
|
*(.bss .bss.* .sbss .sbss.*);
|
|
. = ALIGN(4);
|
|
*(.data .data.* .sdata .stada.*);
|
|
. = ALIGN(4);
|
|
} > ram AT > ram
|
|
}
|