mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-01-31 09:15:11 +00:00
8 lines
155 B
C++
8 lines
155 B
C++
|
int main(int argc, char* argv[])
|
||
|
{
|
||
|
unsigned int a, b, c, d;
|
||
|
asm volatile ( "cpuid" : "+a"(a), "=b"(b), "+c"(c), "=d"(d) );
|
||
|
|
||
|
return 0;
|
||
|
}
|