I am attempting to learn the Assembly language and as a beginner, I am wondering if there is a good way to cmp and jump to a label only if the result of comparation is less than x and greater than y at the same time.
This is what I currently have:
print:
pusha
mov ah, 0x0e
cmp al, 32
jge print_stg2
popa
ret
print_stg2:
cmp al, 126
jle print_stg3
print_stg3:
int 0x10
jmp inputloop