Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 369 Bytes

testcpuinfo.c

File metadata and controls

15 lines (11 loc) · 369 Bytes
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* Test program to check SDL's CPU feature detection */
#include <stdio.h>
#include "SDL.h"
#include "SDL_cpuinfo.h"
int main(int argc, char *argv[])
{
printf("MMX %s\n", SDL_HasMMX() ? "detected" : "not detected");
printf("3DNow %s\n", SDL_Has3DNow() ? "detected" : "not detected");
printf("SSE %s\n", SDL_HasSSE() ? "detected" : "not detected");
return(0);
}