I know that in x86 we can use a 32-bit address in brackets for address. For example:
lea eax, [0xCAFEBABE]
But what should I do in 64-bit mode?
The next code won't compile, because (as I understand) 64-bit constants are just banned for addresses.
lea rax, [0xCAFEBABEDEADBEEF]
How to access some constants with known constant address using this brackets?