I have a jump like so:
jmp 0x8:label
I would like to replace the 0x8
constant with a value from for example the eax
register:
jmp eax:label
Unfortunately NASM does not allow this. What alternative do I have to achieve this?
I have a jump like so:
jmp 0x8:label
I would like to replace the 0x8
constant with a value from for example the eax
register:
jmp eax:label
Unfortunately NASM does not allow this. What alternative do I have to achieve this?