Skip to content

Commit

Permalink
Add cmov to the cpuid bits
Browse files Browse the repository at this point in the history
  • Loading branch information
tbodt committed Jan 21, 2020
1 parent 66f6708 commit df2ecc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion emu/cpuid.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ static inline void do_cpuid(dword_t *eax, dword_t *ebx, dword_t *ecx, dword_t *e
*eax = 0x0; // say nothing about cpu model number
*ebx = 0x0; // processor number 0, flushes 0 bytes on clflush
*ecx = 0b00000000000000000000000000000000; // we support none of the features in ecx
*edx = 0b00000000000000000000000000000000; // we also support none of the features in edx
*edx = 0b00000000000000001000000000000000; // just cmov
break;
}
}
Expand Down

0 comments on commit df2ecc9

Please sign in to comment.