• 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...
  • 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...
  • assembly instruction
    Hi, i want to put some assembly instruction in my c program, using .asm and .endasm but it seem doesn't work. Can anybody help, i'd appreciate your respond. sincerly, hardian hardian_97@yahoo...
  • C and Assembler
    Hi everybody. I want to ask. I write a program in C languge, in this program I want to call a program that I wrote by assembler, when I use below it's not run. Please help me. #pragma src(Main.asm)...