网络收集 利用汇编代码获取计算机的机器码 CString str;unsigned long s1,s2,s3,s4;__asm{mov eax,00hxor edx,edxcpuidmov s1, edxmov s2, eax}__asm{mov eax,01hxor ecx,ecxxor edx,edxcpuidmov s3, edxmov s4, ecx}str.Format(L"%X%X%X%X",s1,s2,s3,s4);MessageBox(str);