Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我只想知道用于将带有数字的 64 位寄存器移动到 xmm 寄存器的代码。我的想法是:
`movsd xmm1, [r14]`
但我不断得到一个segmentation fault: 11.
segmentation fault: 11
我在 Mac OS-X 上使用 NASM x86。
有人请帮忙。
movsd xmm1, [r14]尝试从存储在r14. 那不是你想要的。相反,使用:
movsd xmm1, [r14]
r14
movq xmm1, r14