我是靠谱客的博主 忧虑发卡,最近开发中收集的这篇文章主要介绍汇编获取CPU的id,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

#include <iostream>
#include <string>
#include <windows.h>


std::string GetCPUID()
{
	std::string strCPUId;
	unsigned long s1, s2;
	char buf[32] = { 0 };
	
	__asm
	{
		mov eax, 01h   //eax=1:取CPU序列号
		xor edx, edx
		cpuid
		mov s1, edx
		mov s2, eax
	}

	if (s1) 
	{
		memset(buf, 0, 32);
		sprintf_s(buf, 32, "%08X", s1);
		strCPUId += buf;
	}
	if (s2)
	{
		memset(buf, 0, 32);
		sprintf_s(buf, 32, "%08X", s2);
		strCPUId += buf;
	}

	__asm
	{
		mov eax, 03h
		xor ecx, ecx
		xor edx, edx
		cpuid
		mov s1, edx
		mov s2, ecx
	}
	if (s1) 
	{
		memset(buf, 0, 32);
		sprintf_s(buf, 32, "%08X", s1);
		strCPUId += buf;
	}
	if (s2)
	{
		memset(buf, 0, 32);
		sprintf_s(buf, 32, "%08X", s2);
		strCPUId += buf;
	}
	return strCPUId;
}

int main(int argc, _TCHAR* argv[])
{
	std::cout << "CPUID:" << GetCPUID() << std::endl;
	getchar();
	return 0;
}

最后

以上就是忧虑发卡为你收集整理的汇编获取CPU的id的全部内容,希望文章能够帮你解决汇编获取CPU的id所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(64)

评论列表共有 0 条评论

立即
投稿
返回
顶部