In x86 assembly, when you write a (direct) jump or call, the jump target is specified as an offset from the address of the next instruction. For example:
*000: jmp *020 ; => EB *E
*002: ...
...
Type: Posts; User: jeetha777
In x86 assembly, when you write a (direct) jump or call, the jump target is specified as an offset from the address of the next instruction. For example:
*000: jmp *020 ; => EB *E
*002: ...
...