I'm working on a project in ASM x86-64
on a mac with the last version of catalina. When I try to compile it, I got tihs error error: Macho-O 64-bit format doest not support 32-bit absolute adresses
. I got this when I try to move an adress in the stack frame.
Example:
my_fnc:
push rbp
mov rbp, rsp
sub rsp, 64
mov qword [rbp - 8], __zpair
....
....
....
section .rodata
__zpair:
db "pair", 0