I start the assembly, I use nasm to build the code, I try to process the string in memory and change it, I want to check if the byte is in a certain range (ascii), so I can decide what to do with it, I don’t I can understand how to check if a value is in a certain range, I all know the different types of transition flags, but how can I combine 2 cmp expressions?
my question is: how can I create something like this in an assembly?
if (x>=20 && x<=100)
do something
Thank you so much!
Matan source
share