aboutsummaryrefslogtreecommitdiffhomepage
path: root/pyecsca/codegen/hal/stm32f3/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/stm32f3/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/stm32f3/LinkerScript.ld')
-rw-r--r--pyecsca/codegen/hal/stm32f3/LinkerScript.ld8
1 files changed, 4 insertions, 4 deletions
diff --git a/pyecsca/codegen/hal/stm32f3/LinkerScript.ld b/pyecsca/codegen/hal/stm32f3/LinkerScript.ld
index 0fe0488..7d3b620 100644
--- a/pyecsca/codegen/hal/stm32f3/LinkerScript.ld
+++ b/pyecsca/codegen/hal/stm32f3/LinkerScript.ld
@@ -16,7 +16,7 @@
**
** Target : STMicroelectronics STM32
**
-** Distribution: The file is distributed “as is,” without any warranty
+** Distribution: The file is distributed �as is,� without any warranty
** of any kind.
**
*****************************************************************************
@@ -53,7 +53,7 @@
ENTRY(Reset_Handler)
/* Highest address of the user mode stack */
-_estack = 0x20003000; /* end of RAM */
+_estack = 0x2000A000; /* 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 = 12K
- ROM (rx) : ORIGIN = 0x8000000, LENGTH = 64K
+ RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 40K
+ ROM (rx) : ORIGIN = 0x8000000, LENGTH = 256K
}
/* Sections */