Hello,
What is the syntax for a 64-bit absolute jump in NASM?
For instance what I want to do is this:
[BITS 64]
jmp 0x1234567890ABCDEF
According to the Intel manuals this should be encoded with opcode 0xFF (followed by a 64-bit address) but NASM keeps using opcode 0xE9 (with a 32-bit offset address).
How can I get NASM to encode a 64-bit absolute jump?
Thanks,
-Ian