Add MLA (vector by element), fixes some cases of MUL (vector by element)?
This commit is contained in:
parent
79a5939734
commit
88c6160c62
4 changed files with 17 additions and 5 deletions
|
@ -11,9 +11,8 @@ namespace ChocolArm64.Decoder
|
|||
switch (Size)
|
||||
{
|
||||
case 1:
|
||||
Index = (OpCode >> 21) & 1 |
|
||||
(OpCode >> 10) & 2 |
|
||||
(OpCode >> 18) & 4;
|
||||
Index = (OpCode >> 20) & 3 |
|
||||
(OpCode >> 9) & 4;
|
||||
|
||||
Rm &= 0xf;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue