aboutsummaryrefslogtreecommitdiffhomepage
path: root/pyecsca/codegen/hal/stm32f0/LinkerScript.ld
diff options
context:
space:
mode:
authorJ08nY2023-05-16 12:36:37 +0200
committerJ08nY2023-05-16 12:36:37 +0200
commit453d989ecf529da0ce9648aca3928b5d544ebf04 (patch)
treeac816efd5ee1a491c1df274a195d8f3874bad0c3 /pyecsca/codegen/hal/stm32f0/LinkerScript.ld
parent0eb176e35702a87470f642bc4cc1158c61c66961 (diff)
downloadpyecsca-codegen-453d989ecf529da0ce9648aca3928b5d544ebf04.tar.gz
pyecsca-codegen-453d989ecf529da0ce9648aca3928b5d544ebf04.tar.zst
pyecsca-codegen-453d989ecf529da0ce9648aca3928b5d544ebf04.zip
Update ChipWhisperer HAl from upstream.
Diffstat (limited to 'pyecsca/codegen/hal/stm32f0/LinkerScript.ld')
-rw-r--r--pyecsca/codegen/hal/stm32f0/LinkerScript.ld6
1 files changed, 3 insertions, 3 deletions
diff --git a/pyecsca/codegen/hal/stm32f0/LinkerScript.ld b/pyecsca/codegen/hal/stm32f0/LinkerScript.ld
index e585f83..727b680 100644
--- a/pyecsca/codegen/hal/stm32f0/LinkerScript.ld
+++ b/pyecsca/codegen/hal/stm32f0/LinkerScript.ld
@@ -53,7 +53,7 @@
ENTRY(Reset_Handler)
/* Highest address of the user mode stack */
-_estack = 0x20004000; /* end of RAM */
+_estack = 0x20002000; /* end of RAM */
_Min_Heap_Size = 0; /* required amount of heap */
_Min_Stack_Size = 0x400; /* required amount of stack */
@@ -61,8 +61,8 @@ _Min_Stack_Size = 0x400; /* required amount of stack */
/* Memories definition */
MEMORY
{
- RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 16K
- ROM (rx) : ORIGIN = 0x8000000, LENGTH = 128K
+ RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 8K
+ ROM (rx) : ORIGIN = 0x8000000, LENGTH = 16K
}
/* Sections */