• Assembler
    I am working on a design for school. I am writing in basic atmel assembly. I am currently using a free assembler provided with 8051 textbook (A51--developed by PseudoCorp) that does not assemble any code...
  • IF statement in assembly
    I'm wondering, Does assembler support if staments? (like a C program) Tried something very simple: org 0h sjmp BEGIN org 50h BEGIN: IF R0 == #45 MOV A, #54 CPL A ELSE MOV A, #45 CPL A ENDIF...
  • 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...
  • extern in assembler
    I call a "C" function from assembler. The module containing the function is in a library that works for many other calls . Is it a fact that there is a bug in 7.0 and previous making assembler externs...
  • assembly interrupt
    Hello how can i make this routine in assembly or how can i remove the PUSH an POP instructions for this routine run faster C code: void timer0 (void) interrupt 1 { samples[samplecount]=P3; samplecount...