PPU interpreter (precise): SAT bit implemented (#2736)

This commit is contained in:
Wilfried Rabouin 2017-04-30 20:05:50 +02:00 committed by Ivan
parent f40dcbfa30
commit 7ab210432e
4 changed files with 1027 additions and 69 deletions

View file

@ -1380,11 +1380,6 @@ inline bool issnan(float x)
return std::isnan(x) && ((s32&)x) << 9 > 0;
}
inline int fexpf(float x)
{
return ((u32&)x >> 23) & 0xFF;
}
inline bool isextended(float x)
{
return fexpf(x) == 255;