#include <stdio.h>
#include "getcpuflags.h"
Go to the source code of this file.
◆ main()
Definition at line 12 of file testcpu.c.
13{
14 int family;
17 family = (
flags.id & 0xf00)>>8;
18 printf(
"family: %i\n", family);
23 {
24 printf(
"A i586 or better cpu with:");
32 }
33 else printf(
"I guess you have some i486\n");
34 return 0;
35}