conversion of c to assembly
Dear sir/mam
As i am working on data acquisition project , i am facing the timing problem and i am not able to access complete data from the simulator for the transmission speed of 10 KHz and above , data is missing frequently , so i am planning to go for Assembly language instead of C-programming, i need your help regarding this, i will update the developed code plz have a look at it
i want the below for loop to be converted to ASM, i kindly request you to help me regarding this issue at the earliest
for(i=0;i<=23;i++) // inner for loop to make a byte
{
signature2_byte=signature2_byte<<1;
signature2_byte=signature2_byte + signature_bit_array2[l];
l++;
}
regards
