• 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...
  • 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...
  • inline assembly
    Hi friends, I am using inline assembly in my ISR routine. When i observe the generated sorce file. AT the start of ISR the compiler generates a code to save the ACC, DPL, DPH etc and the general purpose...
  • Inline Assembler - error C195
    Hello, I can't compile inline assembler code, which includes intruction MOV [Rw+],[Rw] Please see modified example from appl. note 172. Compiler returns warning C195: inline-asm: ambigous operand type...
  • inline assembly help linker error
    #include <reg5000.h> #include <stdio.h> void main(void); void writebyte (unsigned char ch); void main() { unsigned char ch; ch=0x0A; writebyte(ch); } void writebyte (unsigned char ch) { ACC=ch;...