mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-04 08:35:55 +00:00
Lots of various changes. CPU detect fix. Maybe a minor speed increase. CPU bugs remain.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@180 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
29102ecbc6
commit
575bdd9166
27 changed files with 400 additions and 192 deletions
|
@ -1156,7 +1156,7 @@ namespace Gen
|
|||
void MOVDDUP(X64Reg regOp, OpArg arg)
|
||||
{
|
||||
// TODO(ector): check SSE3 flag
|
||||
if (cpu_info.bSSE3NewInstructions)
|
||||
if (cpu_info.bSSE3)
|
||||
{
|
||||
WriteSSEOp(64, 0x12, false, regOp, arg); //SSE3
|
||||
}
|
||||
|
@ -1205,7 +1205,7 @@ namespace Gen
|
|||
}
|
||||
|
||||
void PSHUFB(X64Reg dest, OpArg arg) {
|
||||
if (!cpu_info.bSSE3NewInstructions) {
|
||||
if (!cpu_info.bSSSE3) {
|
||||
PanicAlert("Trying to use PSHUFB on a system that doesn't support it. Bad programmer.");
|
||||
}
|
||||
Write8(0x66);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue