| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- /*
- SPDX-License-Identifier: BSD-3-Clause
- Copyright (c) 2021, Alex Taradov <alex@taradov.com>. All rights reserved.
- */
- MEMORY
- {
- boot (rx) : ORIGIN = 0x10000000, LENGTH = 256
- flash (rx) : ORIGIN = 0x10000100, LENGTH = 2048K - 256
- ram (rwx) : ORIGIN = 0x20000000, LENGTH = 264K
- }
- ENTRY(boot_entry)
- SECTIONS
- {
- .boot : ALIGN(4)
- {
- KEEP(*(.boot.entry))
- *(.boot*)
- . = 256-4;
- LONG(0xcccccccc) /* CRC */
- } > boot
- .text : ALIGN(4)
- {
- _text = .;
- KEEP(*(.vectors))
- *(.text*)
- *(.rodata)
- *(.rodata.*)
- . = ALIGN(4);
- _etext = .;
- } > ram AT > flash
- .data : ALIGN(4)
- {
- _data = .;
- *(.ramfunc .ramfunc.*);
- *(vtable)
- *(.data*)
- . = ALIGN(4);
- _edata = .;
- } > ram AT > flash
- .bss : ALIGN(4)
- {
- _bss = .;
- *(.bss*)
- *(COMMON)
- . = ALIGN(4);
- _ebss = .;
- } > ram
- PROVIDE(_end = .);
- PROVIDE(_text_start = ORIGIN(flash));
- PROVIDE(_stack_top = ORIGIN(ram) + LENGTH(ram));
- }
|