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:
Richard Barry 2019-10-13 22:53:00 +00:00
parent 71d9450836
commit d4216903d9
11 changed files with 1021 additions and 126 deletions

View file

@ -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