• How to access local variable in C51 inline-assembly
    For efficiency,i have to use inline assembly in my code, but I failed to access local variables My code is something like this: void func(void) { unsigned int i; i=0; #pragma asm MOV A,i #pragma...
  • How to access local C variables in Inline-Assembly?
    How do I access local C variables in Keil using ARM inline Assembly?
  • local variables in assembler
    Hi all, In my function, I use local variables, and everything works fine while I stay in C. But when I try to use the same variables in an assembler insertion in the same function, I get error A45:...
  • Accessing local variables in asm
    How can you access local variables in the arm asm block? One example the software came with looks like this and doesn't work: int AddUp ( int n, int near *pTab) { __asm { ; open inline-assembly...
  • INLINE ASSEMBLY
    hi i want to use the assembly code in my c file how can i do this i refered the link below but did not the clear idea http://www.keil.com/support/man/docs/c51/c51_cm_srcfile.htm i gone through...