I am starting to learn Assembler. Could anyone please help: how may this code look like in Assebler:
while (j<16)
do {
    a=A[j];
    b=a+B[a];
} 
I am a bit confused how j<16 should be written in the conditional statement for while loop.
I am starting to learn Assembler. Could anyone please help: how may this code look like in Assebler:
while (j<16)
do {
    a=A[j];
    b=a+B[a];
} 
I am a bit confused how j<16 should be written in the conditional statement for while loop.