• 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...
  • About function call
    Is there any "naked" attribute function for Keil C? This is because I would like to have complete control over the push/pop of the registers during function call. If not, is that necessary for me...
  • Calling Assembly Function From Another File
    Hi, I have two files in my project, that are as follows; /////////////////////////////////////////////////////////////////////////// ///////////////////////////////////// File 1 ////////////////...
  • 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.
  • also about RECURSIVE CALL TO FUNCTION
    When I attempt to link my project, the linker reports the following diagnostic: *** WARNING L13: RECURSIVE CALL TO FUNCTION CALLED: _?NETIP_TXPKTDATAGRAM/NET_IP CALLER: _?NETIP_TXPKT/NET_IP please...