• 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 Another File
    Hi, I have two files in my project, that are as follows; /////////////////////////////////////////////////////////////////////////// ///////////////////////////////////// File 1 ////////////////...
  • Calling assembly from c
    Hello, I have a problem with calling assembly from c. typedef unsigned char digit; // apn is a pointer to array of digits. Functions: add(apn number1,apn number2,apn result) subtract...
  • Calling assembly from c
    Hello, I have a problem with calling assembly from c. typedef unsigned char digit; // apn is a pointer to array of digits. Functions: add(apn number1,apn number2,apn result) subtract...
  • 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...