mirror of https://github.com/wolfSSL/wolfBoot.git
57 lines
1.0 KiB
Plaintext
57 lines
1.0 KiB
Plaintext
OUTPUT_ARCH( "riscv" )
|
|
|
|
ENTRY( _reset )
|
|
|
|
MEMORY
|
|
{
|
|
FLASH(rxai!w) : ORIGIN = 0x20010000, LENGTH = @BOOTLOADER_PARTITION_SIZE@
|
|
RAM(wxa!ri) : ORIGIN = 0x80000000, LENGTH = 16K
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
.text :
|
|
{
|
|
_start_text = .;
|
|
KEEP(*(.init)) /* Only for _reset, relocates IV to 0x200 */
|
|
. = ORIGIN(FLASH) + 0x200;
|
|
_start_vector = .;
|
|
KEEP(*(.isr_vector))
|
|
*(.text*)
|
|
*(.rodata*)
|
|
*(.srodata*)
|
|
. = ALIGN(4);
|
|
_end_text = .;
|
|
} > FLASH
|
|
|
|
_stored_data = .;
|
|
|
|
.data : AT (_stored_data)
|
|
{
|
|
. = ALIGN(4096);
|
|
_start_data = .;
|
|
KEEP(*(.ramcode*))
|
|
. = ALIGN(4);
|
|
*(.data*)
|
|
. = ALIGN(4);
|
|
_global_pointer = . + 0x800;
|
|
*(.sdata*)
|
|
. = ALIGN(4);
|
|
_end_data = .;
|
|
} > RAM
|
|
|
|
.bss (NOLOAD) :
|
|
{
|
|
_start_bss = .;
|
|
*(.bss*)
|
|
*(COMMON)
|
|
. = ALIGN(4);
|
|
_end_bss = .;
|
|
_end = .;
|
|
} > RAM
|
|
|
|
}
|
|
|
|
PROVIDE(_start_heap = _end);
|
|
PROVIDE(_end_stack = ORIGIN(RAM) + (LENGTH(RAM)) );
|