• GCC 9-2019-q4 removed debug information from TF-M veneer called functions
    Hey, When building the TF-M ( https://git.trustedfirmware.org/TF-M/trusted-firmware-m.git/ ) during the build process it creates _veneer functions for the functions that will be called from a NS Context...
  • Call C function (that calls another C function) from assembly code
    Hi all, I want to call a C function (for example: func1() ) from my old assembly code. The problem is that if func1() calls another C function( func2() ), what will happen? How does the compiler pass...
  • Call C function (that calls another C function) from assembly code
    Hi all, I want to call a C function (for example: func1() ) from my old assembly code. The problem is that if func1() calls another C function( func2() ), what will happen? How does the compiler pass...
  • Calling assembly function from C
    I am working on a project that has multiple C files and an assembly file. A function in one of the C files is calling an assembly subroutine. The project compiles fine but linking produces the following...
  • Calling Assembly Functions From C
    I'm using the ARM MDK 4.1 kit, and need to call assembly functions from C, but for the life of me I cannot find any documentation describing how to do this. Is it possible? I'm developing for a Cortex...