• How to access local C variables in Inline-Assembly?
    How do I access local C variables in Keil using ARM inline Assembly?
  • accessing local "c" variables in inline assembly
    How do I access a local variable in assembly? I have used the SRC to determine how the compiler created the variable. it changes it's name from variable to variable?nnn where nnn is a number. ...
  • 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:...
  • C51 Inline assemble error
    I'm using C51 V6.12 C source file is like this: void I2CWrite(unsigned char D,bit ConvToBCD) { #pragma asm ..... #pragma endasm } unsigned char I2CRead(bit ACK,bit ConvToBin) { #pragma asm ...
  • inline assembly with C51 v3.20
    On the manual of C51 v3.2, writing and using assembly functions are described and is working successfully. However, there is no clue about the inline assembly on the manual. Does anybody know anything...