mirror of
https://github.com/m-labs/artiq.git
synced 2025-02-02 22:00:20 +08:00
Sebastien Bourdeauducq
c0c5867f9e
Prevents crashing when running the routing code. Will have to be shrunk back on Sayma RTM.
56 lines
841 B
Plaintext
56 lines
841 B
Plaintext
INCLUDE generated/output_format.ld
|
|
INCLUDE generated/regions.ld
|
|
ENTRY(_reset_handler)
|
|
|
|
SECTIONS
|
|
{
|
|
.vectors :
|
|
{
|
|
*(.vectors)
|
|
} > main_ram
|
|
|
|
.text :
|
|
{
|
|
*(.text .text.*)
|
|
} > main_ram
|
|
|
|
/* https://sourceware.org/bugzilla/show_bug.cgi?id=20475 */
|
|
.got :
|
|
{
|
|
PROVIDE(_GLOBAL_OFFSET_TABLE_ = .);
|
|
*(.got)
|
|
} > main_ram
|
|
|
|
.got.plt :
|
|
{
|
|
*(.got.plt)
|
|
} > main_ram
|
|
|
|
.rodata :
|
|
{
|
|
_frodata = .;
|
|
*(.rodata .rodata.*)
|
|
_erodata = .;
|
|
} > main_ram
|
|
|
|
.data :
|
|
{
|
|
*(.data .data.*)
|
|
} > main_ram
|
|
|
|
.bss ALIGN(4) :
|
|
{
|
|
_fbss = .;
|
|
*(.bss .bss.*)
|
|
. = ALIGN(4);
|
|
_ebss = .;
|
|
} > main_ram
|
|
|
|
.stack :
|
|
{
|
|
_estack = .;
|
|
. += 0x10000;
|
|
_fstack = . - 4;
|
|
} > main_ram
|
|
}
|