This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Execute a specific library function from RAM memory using MDK Linkerscript ?

I have a lludivv7m.o which is included inside the Standard Arm C Library. And I need to place the __aeabi_uldivmod function only in RAM.

In the linker script. I can do the following:

lludivv7m.o(+RO)

But this will move the whole file into RAM. is it possible to move this specific function? And others if needed?