You mean "serial number", "who made the processor" or "a string that identifies the make and model of the processor."
Serial number:
If you do not have a Pentium III, you do not have a “unique identifier” associated with your processor.
Intel ( ) P3. - .
, , :
mov eax, 3
cpuid
eax, edx ecx
__cpuid, "3" . , P3.
( )
int regs[4] = {0};
char vendor[13];
__cpuid(regs, 0);
memcpy(vendor, ®s[1], 4);
memcpy(vendor+4, ®s[3], 4);
memcpy(vendor+8, ®s[2], 4);
vendor[12] = '\0';
print("My CPU is a %s\n", vendor);
"GenuineIntel".
(BRAND String)
CPUID, , , , " ", "Intel (R) Core (TM) i7-3770 CPU"). @3.4GHZ.... " Intel . , CPUID. , .
http://www.intel.com/content/dam/www/public/us/en/documents/manuals/64-ia-32-architectures-software-developer-vol-2a-manual.pdf
__cpuid(), MSVC, "InfoType" EAX cpuid. EAX, EBX, ECX EDX CPUInfo [4], .