android_platform_samsung_a7.../external/fec/cpu_features.s
2023-04-06 22:49:21 +02:00

15 lines
184 B
ArmAsm

.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