• Failed to Display Mixed Mode in Disassembler Window
    I'm developing a DLL driver(using AGDI interface) for my 8051 emulator to work with uVision2. Up-till-now, I can step thru assembler instructions in uVision's debug mode. But, the disassembler window...
  • Mixed mode programming
    I have developed a small Single Board computer, with a few customizations.. I am well versed in Assembly programming for 8052, but not for C. I have written driver functions for the devices on the...
  • 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...
  • mix assmbly and c
    Hi all, can any one tell me the way how to mix c and assembly programing....... i know one way of inline programming i.e. ....... ....... C code.... ..... ..... #pragma asm ........ assembly...