• 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 assembly
    I'm trying to use inline assembly in a C file (my projetc consists in one C file and several a51 files). Options "generate assembler SRC" and "assemble SRC" are checked. I get the following message...
  • inline assembler
    Hello, I'm trying to optimize DSP functions to use them in my cortex M3 MCU. I use the Keil compiler and I want to work with inline assembler, but the Keil compiler don't support the inline assembler...
  • rewriting _crol_ as inline assembly
    This line: thresBits = _crol_(thresBits, 2); generates this SRC: MOV R7,thresBits?1282 MOV R0,#02H MOV A,R7 INC R0 SJMP ?C0198 ?C0197: RL A ?C0198: DJNZ R0,?C0197 MOV thresBits...