• 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...
  • parameter passing from c file to assembly file
    How can I pass parameters from C file to assembly file in C167CR.if i call a function(in inline assembly ) from c file and pass parameters then if i use that parameters in assembly how i can alocate the...
  • Passing > 4 Parameters to Function
    Greetings: Here is an odd one that I hope someone can point out the obvious thing I am doing wrong. In the accompanying extremely simplified source code, compiled with uVision3 V3.12a, I am just calling...
  • Parameter pass bug ??
    The following code works in Carm Compiler and it doesn't work in Realview Compiler !! What's happening ? char func(char x1, char x2) { return(x1+x2); } char teste(char c1, char c2) { func(4,5...
  • ARM: about passing parameters.
    The following code is from a project compiled and run very well under Realview Debuger platform.But when transplanted to Keil uVision3, it can be successfully compiled and booted, but overflowed in many...