mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-03-09 04:12:56 +00:00
backend/x64: Implement separate MSXCSR for ASIMDStandardValue
This commit is contained in:
@@ -180,6 +180,14 @@ public:
|
||||
return value;
|
||||
}
|
||||
|
||||
/// Gets the StandardFPSCRValue (A32 ASIMD).
|
||||
FPCR ASIMDStandardValue() const {
|
||||
FPCR stdvalue;
|
||||
stdvalue.AHP(AHP());
|
||||
stdvalue.FZ16(FZ16());
|
||||
return stdvalue;
|
||||
}
|
||||
|
||||
private:
|
||||
// Bits 0-7, 13-14, and 27-31 are reserved.
|
||||
static constexpr u32 mask = 0x07FF9F00;
|
||||
|
||||
Reference in New Issue
Block a user