mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2026-01-21 09:10:37 -05:00
Added the "full" demo to the RISC-V_RV32_SiFive_HiFive1_GCC demo - backup check in only as still a work in progress.
This commit is contained in:
parent
71d9450836
commit
d4216903d9
11 changed files with 1021 additions and 126 deletions
|
|
@ -26,7 +26,7 @@ SECTIONS
|
|||
{
|
||||
__stack_size = DEFINED(__stack_size) ? __stack_size : 0x400;
|
||||
PROVIDE(__stack_size = __stack_size);
|
||||
__heap_size = DEFINED(__heap_size) ? __heap_size : 0x400;
|
||||
__heap_size = DEFINED(__heap_size) ? __heap_size : 0x4;
|
||||
PROVIDE(__metal_boot_hart = 0);
|
||||
PROVIDE(__metal_chicken_bit = 0);
|
||||
|
||||
|
|
@ -216,7 +216,8 @@ SECTIONS
|
|||
. = ALIGN(16);
|
||||
metal_segment_stack_begin = .;
|
||||
. += __stack_size;
|
||||
_sp = .;
|
||||
. = ALIGN(16);
|
||||
_sp = .;
|
||||
PROVIDE(metal_segment_stack_end = .);
|
||||
__freertos_irq_stack_top = .;
|
||||
} >ram AT>ram :ram
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue