diff options
author | Patrick Ting <[email protected]> | 2024-03-29 22:37:40 -0700 |
---|---|---|
committer | Ron Evans <[email protected]> | 2024-04-19 20:50:00 +0200 |
commit | 22bf045c9a5194001b1d52c094094cf8926823a1 (patch) | |
tree | 2d56d86c651fd734e6f59291353901b9382a7ac1 /targets/stm32l4x6.ld | |
parent | 39029cc37604c175c8b512478ba60ab617e79960 (diff) | |
download | tinygo-22bf045c9a5194001b1d52c094094cf8926823a1.tar.gz tinygo-22bf045c9a5194001b1d52c094094cf8926823a1.zip |
add stm32 nucleol476rg support
Diffstat (limited to 'targets/stm32l4x6.ld')
-rw-r--r-- | targets/stm32l4x6.ld | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/targets/stm32l4x6.ld b/targets/stm32l4x6.ld new file mode 100644 index 000000000..4f1ed7732 --- /dev/null +++ b/targets/stm32l4x6.ld @@ -0,0 +1,11 @@ + +MEMORY +{ + FLASH_TEXT (rx) : ORIGIN = 0x08000000, LENGTH = 1024K + RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 96K + RAM2 (xrw) : ORIGIN = 0x10000000, LENGTH = 32K +} + +_stack_size = 4K; + +INCLUDE "targets/arm.ld" |