mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-23 18:09:48 +00:00
8 lines
120 B
C++
8 lines
120 B
C++
#include <nmmintrin.h>
|
|
int main(int argc, char* argv[])
|
|
{
|
|
unsigned int x=32;
|
|
x=_mm_crc32_u8(x,4);
|
|
return 0;
|
|
}
|