aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32h755cm7/memory.x
diff options
context:
space:
mode:
authorDion Dokter <[email protected]>2024-07-08 13:32:23 +0200
committerDion Dokter <[email protected]>2024-07-08 13:32:23 +0200
commitb1ea90a87e5ce6b16bbc155ad30d6d3473a998bb (patch)
tree8b471551499cafb419b031f3e74ff8b693ec2367 /examples/stm32h755cm7/memory.x
parent462daeeb4927416ed817423e91adb71c0861a83d (diff)
Add H755 examples
Diffstat (limited to 'examples/stm32h755cm7/memory.x')
-rw-r--r--examples/stm32h755cm7/memory.x14
1 files changed, 14 insertions, 0 deletions
diff --git a/examples/stm32h755cm7/memory.x b/examples/stm32h755cm7/memory.x
new file mode 100644
index 000000000..ab2afc216
--- /dev/null
+++ b/examples/stm32h755cm7/memory.x
@@ -0,0 +1,14 @@
1MEMORY
2{
3 FLASH : ORIGIN = 0x08000000, LENGTH = 1024K /* BANK_1 */
4 RAM : ORIGIN = 0x24000000, LENGTH = 512K /* AXIRAM */
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