shader_recompiler: added SOPK MOVK (45)

This commit is contained in:
psucien 2024-06-16 20:26:24 +02:00
parent 52f3b74fdd
commit 1fc86a6c9d
3 changed files with 13 additions and 0 deletions

View file

@ -210,6 +210,9 @@ void Translate(IR::Block* block, std::span<const GcnInst> inst_list, Info& info)
Translator translator{block, info};
for (const auto& inst : inst_list) {
switch (inst.opcode) {
case Opcode::S_MOVK_I32:
translator.S_MOVK(inst);
break;
case Opcode::S_MOV_B32:
translator.S_MOV(inst);
break;