Disable serial number on <P3...
Posted: Wed Mar 05, 2003 2:25 pm
Hellu... I read a tutorial about the CPUID, which stated that when using the instruction with Eax=1, Pentium III will not return the CPU signature in Eax (as the processors before P3). Instead it will return 32 bits of the 96-bits serial number. The tutorial supplies the following code to disable the returning of the serial number instead of the signature:
First of all, is that code correct? And can I use this code safely on processors below P3?
Code: Select all
; Disable CPU serial number/Enable CPU signature
Mov Ecx,0x119
Rdmsr
And Eax,0xFFDFFFFF ; Disable serial bit
Wrmsr