Is there a jmp
command that jumps if the ZF
flag or the SF
flat is set? Basically I would like to do something like the following:
sub $NUMBER, %eax
jlez
The equivalent of:
while (i - num >= 0) {
//
}
Is there a jmp
command that jumps if the ZF
flag or the SF
flat is set? Basically I would like to do something like the following:
sub $NUMBER, %eax
jlez
The equivalent of:
while (i - num >= 0) {
//
}