读cpu id

2019-07-12 23:48发布

#include "stdafx.h" #include #include int main() { int buf[4]; __cpuidex(buf, 01, 0); printf("%08x %08x %08x %08x ", buf[0], buf[1], buf[2], buf[3]); memset(buf, 0, sizeof(buf)); __cpuid(buf, 1); printf("%08x %08x %08x %08x", buf[0], buf[1], buf[2], buf[3]); getchar(); return 0; }  

热门文章