Skip to content

Commit

Permalink
Refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
kimwalisch committed Jun 19, 2024
1 parent 6e73ba0 commit 7b4fa29
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions include/cpuid.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ inline void run_cpuid(int* eax, int* ebx, int* ecx, int* edx)
#else

__asm__ (
"cpuid"
: "=a" (*eax),
"=b" (*ebx),
"=c" (*ecx),
"=d" (*edx)
: "a" (*eax), "c" (*ecx)
"cpuid"
: "=a" (*eax),
"=b" (*ebx),
"=c" (*ecx),
"=d" (*edx)
: "a" (*eax), "c" (*ecx)
);

#endif
Expand Down

0 comments on commit 7b4fa29

Please sign in to comment.