diff options
author | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-03-03 00:41:05 -0500 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-07-22 21:51:23 -0400 |
commit | 980cafdc27444484a2a2794be5de92ea18de6e27 (patch) | |
tree | 0b95eaadb03bec8c0ccb8ed31f3d8d42e7689a9c /src/shader_recompiler/frontend/maxwell/maxwell.inc | |
parent | 382cba94ed52f4fae7db437a3056563ba2110e8b (diff) |
shader: Implement LOP and LOP3
Diffstat (limited to 'src/shader_recompiler/frontend/maxwell/maxwell.inc')
-rw-r--r-- | src/shader_recompiler/frontend/maxwell/maxwell.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shader_recompiler/frontend/maxwell/maxwell.inc b/src/shader_recompiler/frontend/maxwell/maxwell.inc index 1515285bf8..5d0b91598e 100644 --- a/src/shader_recompiler/frontend/maxwell/maxwell.inc +++ b/src/shader_recompiler/frontend/maxwell/maxwell.inc @@ -178,8 +178,8 @@ INST(LOP_reg, "LOP (reg)", "0101 1100 0100 0---") INST(LOP_cbuf, "LOP (cbuf)", "0100 1100 0100 0---") INST(LOP_imm, "LOP (imm)", "0011 100- 0100 0---") INST(LOP3_reg, "LOP3 (reg)", "0101 1011 1110 0---") -INST(LOP3_cbuf, "LOP3 (cbuf)", "0011 11-- ---- ----") -INST(LOP3_imm, "LOP3 (imm)", "0000 001- ---- ----") +INST(LOP3_cbuf, "LOP3 (cbuf)", "0000 001- ---- ----") +INST(LOP3_imm, "LOP3 (imm)", "0011 11-- ---- ----") INST(LOP32I, "LOP32I", "0000 01-- ---- ----") INST(MEMBAR, "MEMBAR", "1110 1111 1001 1---") INST(MOV_reg, "MOV (reg)", "0101 1100 1001 1---") |