/asm/cpuid/test_cpuid.c

http://github.com/dennis-gemini/tests · C · 10 lines · 8 code · 2 blank · 0 comment · 0 complexity · 53f70508faf74f92d0d40dc8c29f4eb8 MD5 · raw file

  1. #include <stdio.h>
  2. extern const char* cpuid();
  3. int
  4. main()
  5. {
  6. printf("CPUID: %s\n", cpuid());
  7. return 0;
  8. }