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: ...
...