You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
.text |
|
.global cpu_features |
|
.type cpu_features,@function |
|
cpu_features: |
|
pushl %ebx |
|
pushl %ecx |
|
pushl %edx |
|
movl $1,%eax |
|
cpuid |
|
movl %edx,%eax |
|
popl %edx |
|
popl %ecx |
|
popl %ebx |
|
ret |
|
|