summaryrefslogtreecommitdiff
path: root/Project/ld/stm32f072x8.ld
diff options
context:
space:
mode:
authorOxore <oxore@protonmail.com>2022-10-09 02:54:07 +0300
committerOxore <oxore@protonmail.com>2022-10-09 02:57:01 +0300
commitb1c8bb5df090d65cdd37a7acafb5dee8e3c530c6 (patch)
tree04e77389b96ed575bff7810ebb71857eff7e3b46 /Project/ld/stm32f072x8.ld
parent59651845feac3c6a2cb8e91e7494fd0e7940d145 (diff)
Add CMakeLists.txt and make it compile with GCC
Diffstat (limited to 'Project/ld/stm32f072x8.ld')
-rw-r--r--Project/ld/stm32f072x8.ld4
1 files changed, 4 insertions, 0 deletions
diff --git a/Project/ld/stm32f072x8.ld b/Project/ld/stm32f072x8.ld
new file mode 100644
index 0000000..7600040
--- /dev/null
+++ b/Project/ld/stm32f072x8.ld
@@ -0,0 +1,4 @@
+MEMORY {
+ FLASH(rx) : ORIGIN = 0x08000000, LENGTH = 64K
+ SRAM(rwx) : ORIGIN = 0x20000000, LENGTH = 16K
+}