forked from M-Labs/zynq-rs
59 lines
1.0 KiB
Plaintext
59 lines
1.0 KiB
Plaintext
ENTRY(Reset);
|
|
|
|
MEMORY
|
|
{
|
|
/* 256 kB On-Chip Memory */
|
|
OCM : ORIGIN = 0, LENGTH = 0x30000
|
|
OCM3 : ORIGIN = 0xFFFF0000, LENGTH = 0x10000
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
.text :
|
|
{
|
|
KEEP(*(.text.exceptions));
|
|
*(.text.boot);
|
|
*(.text .text.*);
|
|
} > OCM
|
|
|
|
.rodata : ALIGN(4)
|
|
{
|
|
*(.rodata .rodata.*);
|
|
} > OCM
|
|
|
|
.data : ALIGN(4)
|
|
{
|
|
*(.data .data.*);
|
|
} > OCM
|
|
|
|
.bss (NOLOAD) : ALIGN(4)
|
|
{
|
|
__bss_start = .;
|
|
*(.bss .bss.*);
|
|
. = ALIGN(4);
|
|
__bss_end = .;
|
|
} > OCM
|
|
|
|
.stack1 (NOLOAD) : ALIGN(8) {
|
|
__stack1_end = .;
|
|
. += 0x200;
|
|
__stack1_start = .;
|
|
} > OCM
|
|
|
|
.stack0 (NOLOAD) : ALIGN(8) {
|
|
__stack0_end = .;
|
|
. = ORIGIN(OCM) + LENGTH(OCM) - 8;
|
|
__stack0_start = .;
|
|
} > OCM
|
|
|
|
/DISCARD/ :
|
|
{
|
|
/* Unused exception related info that only wastes space */
|
|
*(.ARM.exidx);
|
|
*(.ARM.exidx.*);
|
|
*(.ARM.extab.*);
|
|
}
|
|
}
|
|
|
|
ASSERT(SIZEOF(.stack0) >= 0x1000, "less than 4 KB left for stack");
|