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

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -