We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
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;
int add_high,carry,low_poti; TL0=0x69+low_poti; if (CY==1) carry=1; else carry=0; TH0=0xF8+add_high+carry;