• 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 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...
  • how to call a function from another banking??
    does somebody can explain or provide simply samples for code banking switch and call a function from another banking?such as call a function in bank1 from common area or call a function in bank2 from...
  • How to call a C function from assembly
    I am writing an ISR using assembly language . I want to know how to call a C function from assembly.I am using keil compiler and 8051 microcontroller .Reply as soon as possible.
  • 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...