mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-03-10 08:56:28 +00:00
VFP: Implement VABS
This commit is contained in:
@@ -274,6 +274,14 @@ IR::Value IREmitter::ByteReverseDual(const IR::Value& a) {
|
||||
return Inst(IR::Opcode::ByteReverseDual, {a});
|
||||
}
|
||||
|
||||
IR::Value IREmitter::FPAbs32(const IR::Value& a) {
|
||||
return Inst(IR::Opcode::FPAbs32, {a});
|
||||
}
|
||||
|
||||
IR::Value IREmitter::FPAbs64(const IR::Value& a) {
|
||||
return Inst(IR::Opcode::FPAbs64, {a});
|
||||
}
|
||||
|
||||
IR::Value IREmitter::FPAdd32(const IR::Value& a, const IR::Value& b, bool fpscr_controlled) {
|
||||
ASSERT(fpscr_controlled);
|
||||
return Inst(IR::Opcode::FPAdd32, {a, b});
|
||||
|
||||
Reference in New Issue
Block a user