aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32h755cm4/memory.x
diff options
context:
space:
mode:
Diffstat (limited to 'examples/stm32h755cm4/memory.x')
-rw-r--r--examples/stm32h755cm4/memory.x14
1 files changed, 14 insertions, 0 deletions
diff --git a/examples/stm32h755cm4/memory.x b/examples/stm32h755cm4/memory.x
new file mode 100644
index 000000000..f946b6210
--- /dev/null
+++ b/examples/stm32h755cm4/memory.x
@@ -0,0 +1,14 @@
1MEMORY
2{
3 FLASH : ORIGIN = 0x08100000, LENGTH = 1024K /* BANK_2 */
4 RAM : ORIGIN = 0x30000000, LENGTH = 128K /* SRAM1 */
5 RAM_D3 : ORIGIN = 0x38000000, LENGTH = 64K /* SRAM4 */
6}
7
8SECTIONS
9{
10 .ram_d3 :
11 {
12 *(.ram_d3)
13 } > RAM_D3
14} \ No newline at end of file