mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-07-24 10:25:42 -04:00
8 lines
289 B
NASM
8 lines
289 B
NASM
[BITS 64]
|
|
|
|
vmovntdqa ymm1, yword [rsi] ; fails: "error: invalid combination of opcode and operands"
|
|
vmovntdqa ymm1, [rsi] ; works
|
|
vmovntdqa xmm1, oword [rsi] ; works
|
|
movntdqa xmm1, oword [rsi] ; fails, see bug 978756: "error: mismatch in operand sizes"
|
|
movntdqa xmm1, [rsi] ; works
|