mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-06 06:28:13 +01:00
A64: Implemented EOR (vector), ORR (vector, register) and ORN (vector) Instructions (#142)
This commit is contained in:
parent
cf824fb2b2
commit
e0c12ec2ad
6 changed files with 81 additions and 3 deletions
|
|
@ -175,6 +175,9 @@ OPCODE(VectorAdd16, T::U128, T::U128, T::U128
|
|||
OPCODE(VectorAdd32, T::U128, T::U128, T::U128 )
|
||||
OPCODE(VectorAdd64, T::U128, T::U128, T::U128 )
|
||||
OPCODE(VectorAnd, T::U128, T::U128, T::U128 )
|
||||
OPCODE(VectorOr, T::U128, T::U128, T::U128 )
|
||||
OPCODE(VectorEor, T::U128, T::U128, T::U128 )
|
||||
OPCODE(VectorNot, T::U128, T::U128 )
|
||||
OPCODE(VectorLowerBroadcast8, T::U128, T::U8 )
|
||||
OPCODE(VectorLowerBroadcast16, T::U128, T::U16 )
|
||||
OPCODE(VectorLowerBroadcast32, T::U128, T::U32 )
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue