Assembly Jump conditionals -- jae vs. jbe
- by Raven Dreamer
Hi, all!
I'm working on an assembly program (intel 8086). I'm trying to determine whether an input character (stored in dl) is within a certain range of hex values.
cmp dl, 2Eh ;checks for periods
je print ;jumps to print a "." input
cmp dl, 7Ah ;checks for outside of wanted…