This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/WATCOM/samples/clibexam/mpcmpeqd.c

20 lines
389 B
C
Raw Permalink Normal View History

#include <stdio.h>
#include <mmintrin.h>
#define AS_DWORDS "%8.8lx %8.8lx"
__m64 a;
__m64 b = { 0x0004000300020001 };
__m64 c = { 0x000400030002007f };
void main()
{
a = _m_pcmpeqd( b, c );
printf( "m1="AS_DWORDS"\n"
"m2="AS_DWORDS"\n"
"mm="AS_DWORDS"\n",
b._32[1], b._32[0],
c._32[1], c._32[0],
a._32[1], a._32[0] );
}