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/mfromint.c

15 lines
202 B
C

#include <stdio.h>
#include <mmintrin.h>
__m64 a;
int k = 0xF1F2F3F4;
void main()
{
a = _m_from_int( k );
printf( "int=%8.8lx m=%8.8lx%8.8lx\n",
k, a._32[1], a._32[0] );
}