summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkkitayam <[email protected]>2021-03-27 16:00:56 +0900
committerkkitayam <[email protected]>2021-03-27 16:00:56 +0900
commite48b2c681e9d7eaf07f3e1d4125ab24872645f32 (patch)
treed91230ebb1e8209036261c6204fcf83208411122
parente010ea30e57e0f8561f8aa7b66afefb01a9bc42d (diff)
fixed definitions for stack areas
-rw-r--r--hw/bsp/gr_citrus/r5f5631fd.ld6
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/bsp/gr_citrus/r5f5631fd.ld b/hw/bsp/gr_citrus/r5f5631fd.ld
index 166a9e7c5..fa8142936 100644
--- a/hw/bsp/gr_citrus/r5f5631fd.ld
+++ b/hw/bsp/gr_citrus/r5f5631fd.ld
@@ -1,5 +1,5 @@
__USTACK_SIZE = 0x00000200;
-__ISTACK_SIZE = 0x00000100;
+__ISTACK_SIZE = 0x00000200;
MEMORY
{
@@ -112,13 +112,13 @@ SECTIONS
_ebss = .;
_end = .;
} > RAM
- .ustack (COPY) :
+ .ustack :
{
. = ALIGN(8);
. = . + __USTACK_SIZE;
PROVIDE(_ustack = .);
} > RAM
- .istack (COPY) :
+ .istack :
{
. = ALIGN(8);
. = . + __ISTACK_SIZE;