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.
15 lines
184 B
15 lines
184 B
7 months ago
|
.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
|
||
|
|