• Inline Assembly & Interrupt Functions
    Hello, 1) I want to place assembly code in my C code. The problem with using SRC is that I would have to rename the file MyAsm.SRC to MyAsm.A51 and then (remove C code from project) include A51 code...
  • How to write interrupt function in assembly in keilc51?
    I want to write the interrupt routines in assembly ,i don't want to use inline assembly.
  • 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...
  • Timer/counter/External Interrupts code in ARM assembly
    hi all, I am on the learning stage of LPC2148 and I have done basic programs like interrupts ... ADC ... TIMER/COUNTER. But all the code I have written is in C Language. Though I had written...
  • C51 v8.17 saving/restoring all registers in interrupt function with assembly src
    C51 will generate different code for the following function: void timer1 (void) interrupt 3 { second; #pragma asm clr TF1 #pragma endasm } Compiler v8.08 code (edited) USING 0 timer1...