Implement ICMP shader instruction (#1010)
This commit is contained in:
parent
9a208c4fb5
commit
6edc929894
3 changed files with 32 additions and 16 deletions
|
@ -120,6 +120,10 @@ namespace Ryujinx.Graphics.Shader.Decoders
|
|||
Set("010011001100xx", InstEmit.Iadd3, typeof(OpCodeAluCbuf));
|
||||
Set("0011100x1100xx", InstEmit.Iadd3, typeof(OpCodeAluImm));
|
||||
Set("010111001100xx", InstEmit.Iadd3, typeof(OpCodeAluReg));
|
||||
Set("010010110100xx", InstEmit.Icmp, typeof(OpCodeAluCbuf));
|
||||
Set("0011011x0100xx", InstEmit.Icmp, typeof(OpCodeAluImm));
|
||||
Set("010110110100xx", InstEmit.Icmp, typeof(OpCodeAluReg));
|
||||
Set("010100110100xx", InstEmit.Icmp, typeof(OpCodeAluRegCbuf));
|
||||
Set("010010100xxxxx", InstEmit.Imad, typeof(OpCodeAluCbuf));
|
||||
Set("0011010x0xxxxx", InstEmit.Imad, typeof(OpCodeAluImm));
|
||||
Set("010110100xxxxx", InstEmit.Imad, typeof(OpCodeAluReg));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue