1
0
Fork 0

GUI: don't display xmm/ymm/st registers in the InfoBox (resolves issue #1476)

This commit is contained in:
mrexodia 2017-03-10 23:23:47 +01:00
parent 15bbdd84de
commit b885e2ed4e
No known key found for this signature in database
GPG Key ID: FC89E0AAA0C1AAD8
1 changed files with 6 additions and 2 deletions

View File

@ -232,9 +232,13 @@ void CPUInfoBox::disasmSelectionChanged(dsint parVA)
continue;
setInfoLine(j, symbolicName);
}
else
else if(!mnemonic.startsWith("xmm") && //TODO: properly handle display of these registers
!mnemonic.startsWith("ymm") &&
!mnemonic.startsWith("st"))
{
setInfoLine(j, mnemonic + "=" + symbolicName);
j++;
j++;
}
}
}
if(getInfoLine(0) == getInfoLine(1)) //check for duplicate info line