mirror of
https://github.com/supleed2/EIE4-FYP.git
synced 2024-11-09 20:05:49 +00:00
67 lines
1.1 KiB
Plaintext
67 lines
1.1 KiB
Plaintext
INCLUDE generated/output_format.ld
|
|
ENTRY(_start)
|
|
|
|
__DYNAMIC = 0;
|
|
|
|
INCLUDE generated/regions.ld
|
|
|
|
SECTIONS
|
|
{
|
|
.text :
|
|
{
|
|
_ftext = .;
|
|
/* Make sure crt0 files come first, and they, and the isr */
|
|
/* don't get disposed of by greedy optimisation */
|
|
*crt0*(.text)
|
|
KEEP(*crt0*(.text))
|
|
KEEP(*(.text.isr))
|
|
|
|
*(.text .stub .text.* .gnu.linkonce.t.*)
|
|
_etext = .;
|
|
} > main_ram
|
|
|
|
.rodata :
|
|
{
|
|
. = ALIGN(8);
|
|
_frodata = .;
|
|
*(.rodata .rodata.* .gnu.linkonce.r.*)
|
|
*(.rodata1)
|
|
*(.got .got.*)
|
|
*(.toc .toc.*)
|
|
. = ALIGN(8);
|
|
_erodata = .;
|
|
} > main_ram
|
|
|
|
.data :
|
|
{
|
|
. = ALIGN(8);
|
|
_fdata = .;
|
|
*(.data .data.* .gnu.linkonce.d.*)
|
|
*(.data1)
|
|
_gp = ALIGN(16);
|
|
*(.sdata .sdata.* .gnu.linkonce.s.*)
|
|
. = ALIGN(8);
|
|
_edata = .;
|
|
} > sram AT > main_ram
|
|
|
|
.bss :
|
|
{
|
|
. = ALIGN(8);
|
|
_fbss = .;
|
|
*(.dynsbss)
|
|
*(.sbss .sbss.* .gnu.linkonce.sb.*)
|
|
*(.scommon)
|
|
*(.dynbss)
|
|
*(.bss .bss.* .gnu.linkonce.b.*)
|
|
*(COMMON)
|
|
. = ALIGN(8);
|
|
_ebss = .;
|
|
_end = .;
|
|
} > sram
|
|
}
|
|
|
|
PROVIDE(_fstack = ORIGIN(sram) + LENGTH(sram));
|
|
|
|
PROVIDE(_fdata_rom = LOADADDR(.data));
|
|
PROVIDE(_edata_rom = LOADADDR(.data) + SIZEOF(.data));
|