mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-05 22:18:16 +01:00
A64: Implement AND (vector)
This commit is contained in:
parent
35aaee6cc6
commit
f81d0a2536
6 changed files with 25 additions and 1 deletions
|
|
@ -620,6 +620,10 @@ U128 IREmitter::VectorAdd64(const U128& a, const U128& b) {
|
|||
return Inst<U128>(Opcode::VectorAdd64, a, b);
|
||||
}
|
||||
|
||||
U128 IREmitter::VectorAnd(const U128& a, const U128& b) {
|
||||
return Inst<U128>(Opcode::VectorAnd, a, b);
|
||||
}
|
||||
|
||||
U32 IREmitter::FPAbs32(const U32& a) {
|
||||
return Inst<U32>(Opcode::FPAbs32, a);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue