diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-02-08 13:46:48 +0100 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-02-08 13:46:48 +0100 |
commit | ec871ef8ae230bcb779c8535c3c4526817fd5d93 (patch) | |
tree | 558e731639f7ece070d7abd14c3c82afa11f9647 /src/arch/stm32f746zg-nucleo/stm32f746zg.ld | |
parent | 18db600341bcf1c21e4282515d458b898639f349 (diff) |
Add preliminary STM32F746ZG-Nucleo support
Diffstat (limited to 'src/arch/stm32f746zg-nucleo/stm32f746zg.ld')
-rw-r--r-- | src/arch/stm32f746zg-nucleo/stm32f746zg.ld | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/arch/stm32f746zg-nucleo/stm32f746zg.ld b/src/arch/stm32f746zg-nucleo/stm32f746zg.ld new file mode 100644 index 0000000..7680d9f --- /dev/null +++ b/src/arch/stm32f746zg-nucleo/stm32f746zg.ld @@ -0,0 +1,13 @@ +/* + * Copyright 2024 Birte Kristina Friesel + * + * SPDX-License-Identifier: CC0-1.0 + */ + +MEMORY +{ + rom (rx) : ORIGIN = 0x08000000, LENGTH = 1024K + ram (rwx) : ORIGIN = 0x20000000, LENGTH = 320K +} + +INCLUDE ext/libopencm3/lib/cortex-m-generic.ld |