// cpuida.c // bcc32 -v cpuida.c cpuid1.obj // Mc.N (kfb02545@nifty.ne.jp) #include #include extern BOOL IsCPUID(void); int main() { if( IsCPUID() ){ printf("CPUID is supported!\n"); }else{ printf("CPUID is not supported?\n"); } return 0; }