mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-04-21 20:14:45 +00:00
Add S_LOAD_DWORD and S_LOAD_DWORDX2
This commit is contained in:
parent
5c5c02cb04
commit
7d29fd2114
1 changed files with 4 additions and 0 deletions
|
@ -9,6 +9,10 @@ static constexpr u32 SQ_SRC_LITERAL = 0xFF;
|
|||
|
||||
void Translator::EmitScalarMemory(const GcnInst& inst) {
|
||||
switch (inst.opcode) {
|
||||
case Opcode::S_LOAD_DWORD:
|
||||
return S_LOAD_DWORD(1, inst);
|
||||
case Opcode::S_LOAD_DWORDX2:
|
||||
return S_LOAD_DWORD(2, inst);
|
||||
case Opcode::S_LOAD_DWORDX4:
|
||||
return S_LOAD_DWORD(4, inst);
|
||||
case Opcode::S_LOAD_DWORDX8:
|
||||
|
|
Loading…
Add table
Reference in a new issue