/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
- #include <stdio.h>
- extern const char* cpuid();
- int
- main()
- {
- printf("CPUID: %s\n", cpuid());
- return 0;
- }