assembly - Moving quadwords to xmm -
i want know code use move 64-bit register number in xmm register. thought was:
`movsd xmm1, [r14]`
but keep getting segmentation fault: 11
.
i using nasm x86 on mac os-x.
someone please help.
movsd xmm1, [r14]
attempts load double address stored in r14
. that's not want. instead, use:
movq xmm1, r14
Comments
Post a Comment