• 89c51 articles
    i need a lot of information about 89c51 for my final project, if you dont mind please send me some articles about 89c51 soon...(before tommorow) thx b4 -Yoe-
  • Mixing C and assembly
    I have written one code in the assembly language for mixing C and assembly. The compiler is not properly generating the code for one instruction. I have written the following code, LDR r0,[pc, #74...
  • Mixing C & Assembly
    Hi, How to mix C & assembly in Keil. I am using Keil V4.54.0.0 & LPC1317FBD48.
  • mixing of C and assembly
    How to save and compile a C code with inline assembly program?
  • C mixed with assembler
    I want to use C mixed with assembler. I wrote the following experimental program: void main(void){ char i,a[20]; for(i=0;i<20;i++)a[i]=i; #pragma ASM MOV A,#29H MOV R2,A ..etc.. #pragma ENDASM...