• Passing arguments between c and assembler functions
    I am trying to write a c program in keil, which interfaces with assembler functions. I have managed to allow the c program to call these functions but i'm unsure of how to pass arguments between them...
  • Problem passing variable to function in ISR
    So, I have a problem sending a value to a function at different parts of my code. Here is my code: void LongRightShift(unsigned char NumBitsShift) { // My Code Here NumBitsShift = NumBitsShift;...
  • Parameter passing from Assembly to C functions
    Want to know about the parameter passing mechanism from assembly to C function, for that I have gone through the doc www.keil.com/.../c51_le_passingparmsinregs.htm. Is the information given is...
  • passing array to inline assembly
    i am sending details of my problem,i want to send array values stored in c function to inline assembly created in separate file .i have array declared in main file as extern like below extern unsigned...
  • passing ports to a function
    I have a program in which I have to manipulate 4 LEDs. I have a function that is designed to find out exactlywhat I need to do to each LED ie flash, fade, dim, etc but in order to save on code space I...