mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-07 06:58:15 +01:00
backend/x64: Implement separate MSXCSR for ASIMDStandardValue
This commit is contained in:
parent
d3664b03fe
commit
1b3a70a83c
8 changed files with 38 additions and 7 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue