I am trying to understand how to do a while loop with multiple conditions in ARM assembly.
For example trying to code this:
while ((i>0)&&(val < (ls->sortedList[i-1])))
I understand how the logic of a while loop works in ARM assembly and I get how I would code both of those compares separately. I am just confused on how you would make it so the while loop doesn't continue unless both of those conditions are true in ARM assembly.
Thank you!