我的装配不是很流利;而我正在努力实现的目标如下:

00001 INC EAX
00002 MOV EBX, 22
00003 JMP 140 <-- Here I want to jump +140 from the current EIP
...
00143 RETN <-- I want to land here

我在汇编x86中了解了短距离,远距离,近距离跳跃,我似乎无法弄清楚如何进行我想要的跳转,最近的解决方案是短跳:

EB8F JMP xx <-- It would work if I'm jumping into a place less than 7F, but my jump is bigger than 127 (7F).

EB8F 是我的指令的操作码 .

如何从当前EIP向前跳转140个字节?