• CARM-LCP2292: Function calls from within ISRs
    Greetings: I'm desperately chasing obscure bugs in somebody else's code. I say this before I state that some of the ISR's are embarrassingly long, and have multiple calls to utility functions. In a...
  • how to call a extern function within embedded ASM ?
    Note: This was originally posted on 4th June 2009 at http://forums.arm.com is it possibe to get the embedded assembly to call my function1()? How do I write this ? Thanks!
  • CALL C FUNCTIONS WITHIN STARTUP CODE
    Hello, I need to start C functions from startup code before calling C startup (which calls main()). Reason: I have to do some selftests like a destroying RAM Test which must be done before the...
  • Calling a C-function from assembler
    I wrote the following experimental program: //file c_function.h #ifndef c_function_h #define c_function_h int add_int(int a, int b); #endif //file c_function.c #include "c_function.h" int...
  • 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...