I am very new to ARM and doing an assignment for a class. What I am confused about is a double condition like, if (x > 0 && x < 100) do something.
What I am trying to get done is check to see if in an address memory, if the information is a upper or lower case character.
I found a link on here but it is not for ARM and doesn't seem like it can help me.
I tried something like:
BGT r2, #0x60
BLT r2, #0x7B
But is throwing errors about expecting an address expression so I am assuming you can not compare a value stright to an int.
Edited, fixed my condition, was typing too fast and put wrong GT LT arrows