diff options
| -rw-r--r-- | support/ld/extra_libs.inc | 1 | ||||
| -rw-r--r-- | support/ld/stm32/mem/sram_112k_flash_768k/mem-jtag.inc | 5 | ||||
| -rw-r--r-- | support/ld/stm32/mem/sram_112k_flash_768k/mem-ram.inc | 5 |
3 files changed, 11 insertions, 0 deletions
diff --git a/support/ld/extra_libs.inc b/support/ld/extra_libs.inc new file mode 100644 index 0000000..1216f97 --- /dev/null +++ b/support/ld/extra_libs.inc @@ -0,0 +1 @@ +/* toolchain specific stuff */ diff --git a/support/ld/stm32/mem/sram_112k_flash_768k/mem-jtag.inc b/support/ld/stm32/mem/sram_112k_flash_768k/mem-jtag.inc new file mode 100644 index 0000000..d62fb7a --- /dev/null +++ b/support/ld/stm32/mem/sram_112k_flash_768k/mem-jtag.inc @@ -0,0 +1,5 @@ +MEMORY +{ + ram (rwx) : ORIGIN = 0x20000000, LENGTH = 112K + rom (rx) : ORIGIN = 0x08000000, LENGTH = 768K +} diff --git a/support/ld/stm32/mem/sram_112k_flash_768k/mem-ram.inc b/support/ld/stm32/mem/sram_112k_flash_768k/mem-ram.inc new file mode 100644 index 0000000..d21f17c --- /dev/null +++ b/support/ld/stm32/mem/sram_112k_flash_768k/mem-ram.inc @@ -0,0 +1,5 @@ +MEMORY +{ + ram (rwx) : ORIGIN = 0x20000000, LENGTH = 112K + rom (rx) : ORIGIN = 0x08000000, LENGTH = 0K +} |
