Assembly language-common transfer instructions

      Transfer instructions The instructions that
can modify IP, or modify CS and IP at the same time are collectively called transfer instructions. The branch instructions are divided into the following categories.
(1) Unconditional branch instructions, such as jmp;
(2) Conditional branch instructions, such as jcxz, je, jb, ja, jnb, jna, etc.;
(3) Loop instructions, such as loop;
(4) Process, such as, call, ret, retf;
(5) Interrupt, for example, int, iret

Guess you like

Origin blog.csdn.net/ma2595162349/article/details/108556918