diff options
| author | ozpv <39195175+ozpv@users.noreply.github.com> | 2026-08-29 23:04:49 -0500 |
|---|---|---|
| committer | ozpv <39195175+ozpv@users.noreply.github.com> | 2026-08-29 23:04:49 -0500 |
| commit | bdd8c21fcfff8041ea94a972903ce42e58c2a5c2 (patch) | |
| tree | e85828cc8d209decf9a367f1853356a79397ea3b /STM32H750ZBTX_FLASH.ld | |
| parent | d000890eafbc6cc715fa6e7da2db61db05a6f3e4 (diff) | |
Diffstat (limited to 'STM32H750ZBTX_FLASH.ld')
| -rwxr-xr-x | STM32H750ZBTX_FLASH.ld | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/STM32H750ZBTX_FLASH.ld b/STM32H750ZBTX_FLASH.ld index a9622d8..8ea257d 100755 --- a/STM32H750ZBTX_FLASH.ld +++ b/STM32H750ZBTX_FLASH.ld @@ -194,6 +194,14 @@ SECTIONS *(.sdram*) . = ALIGN(4); } >SDRAM -} - + .RAM_D2 (NOLOAD) : + { + . = ALIGN(32); + _sram_d2 = .; + *(.RAM_D2) + *(.RAM_D2*) + . = ALIGN(32); + _eram_d2 = .; + } >RAM_D2 +} |
