<<< Controlling Program Flow | Index | General-Purpose Registers >>> |
Conditional jump is taken only if the condition is met.
Condition testing is separated from branching.
Flag register is used to convey the condition test result.
For example:
cmp ax, bx je done . . done:
<<< Controlling Program Flow | Index | General-Purpose Registers >>> |