Resolved! Hello, I'm using an STM32H750 MCU where I'm integrating the Crypto lib v4.0.1 I would like to execute this library (.text) from a specifc section. But I can manage to do what I want.
You can found below a extract of my linker script:MEMORY { D1_CODE_RAM (xrx) : ORIGIN = 0x24070000, LENGTH = 64K FLASH (rx) : ORIGIN = 0x8000000, LENGTH = 128K NVRAM (rx) : ORIGIN = 0x8020000, LENGTH = 64K } .ram_code_load...