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

ADDC in C51


What is the most efficient way of assembly instruction ADDC in C51?

Is the following allowed

int add_high,carry,low_poti;

TL0=0x69+low_poti;
TH0=0xF8+add_high+CY;

Or should I do the following?
int add_high,carry,low_poti;

TL0=0x69+low_poti;
if (CY==1)
carry=1;
else
carry=0;
TH0=0xF8+add_high+carry;

0