mirror of
https://github.com/Mr-Wiseguy/Zelda64Recomp.git
synced 2024-11-18 03:39:16 +01:00
13 lines
238 B
C++
13 lines
238 B
C++
#include <stdio.h>
|
|
#include <nmmintrin.h>
|
|
|
|
int test() {
|
|
unsigned int res = _mm_crc32_u8(1, 2);
|
|
}
|
|
|
|
int main() {
|
|
auto result = test();
|
|
printf("SSE4.2 supported and test function executed. Result: %d\n", result);
|
|
return 0;
|
|
}
|