What does “short” jump mean in assembly language?

前端 未结 4 1488
有刺的猬
有刺的猬 2020-12-31 04:43

What does the \"SHORT\" mean in this code?

JE SHORT 00013FB8
4条回答
  •  礼貌的吻别
    2020-12-31 04:54

    It means that it isn't jumping very far. Depending on the disassembler, the number after that will either be the address that it jumps to or a relative offset which tells you how many bytes are between the next instruction and the target of the jump.

提交回复
热议问题