Microcontroller › 8051 › Anyway to convert assembly code in to C code? › try this it might
March 10, 2011 at 11:07 am
#5698
Participant
try this it might work
#include<reg52.h>
void main (void)
{
while(1)
{
P1=0xff;
asm:(” MOV R5,#0x13″);
P1=0x00;
}
}