私はこのコードスニペットを持っています:
@combinerows:
mov esi,eax
and edi,Row1Mask
and ebx,Row2Mask
or ebx,edi
//NewQ:= (Row1 and Row1Mask) or (Row2 and Row2Mask);
//Result:= NewQ xor q;
PUNPCKDQ mm4,mm5 <-- I get an error here
//mov eax,[eax].q
movd eax,mm4
//q:= NewQ;
mov [esi].q,ebx
xor eax,ebx //Return difference.
次のエラーが表示されます。
[パスカル エラー] SDIMAIN.pas(718): E2003 宣言されていない識別子: 'PUNPCKDQ'
それとも、Delphi 2007 は MMX/SSE 命令の完全なセットをサポートしていませんか?