This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

How to insert Assenbly CODE in between function???

Hi,

I am using AT89C51ED2 Micro controller, I want to insert assembly code in between the EEPROM fucntion,

The function is,

void EEPROM_WRITE(unsigned char xdata *Addr,unsigned   int E_Data )
{

unsigned char Buffer[10],i=0;
sprintf(Buffer,"%d",(int)E_Data);

   while(Buffer[i]!='/0')
   {
      while(BUSY);
      EA=0;
      E_EEPROM; // EEPROM Enable Macro
      *(Addr+i)=Buffer[i];  // Replace this code with    Assmebly in code???
      EA=1;
      D_EEPROM; // EEPROM Disable Macro
      i++;
   }
     *(Addr+i)='\0';
 }

}

If there is any problem in the code , please correct !!

and please tell me how can we replace the code in assembly in between the code???

Rajesh

Parents
  • try following simple method..

    Don't try it, it's not going to work. The C51 compiler does not support doing inline assembly this way.

    Instead, look up the ASM compiler directive in the C51 manual. The bad news is that this only works when used with the SRC directive, so you need to assemble the resulting source file separately.

Reply
  • try following simple method..

    Don't try it, it's not going to work. The C51 compiler does not support doing inline assembly this way.

    Instead, look up the ASM compiler directive in the C51 manual. The bad news is that this only works when used with the SRC directive, so you need to assemble the resulting source file separately.

Children