diff options
| author | 2015-02-16 09:44:48 -0500 | |
|---|---|---|
| committer | 2015-02-16 09:44:48 -0500 | |
| commit | 004b8ef2aa7f6b8389d79ba95b18b09c8d59eb46 (patch) | |
| tree | 73bbb46892f26e8f348753b0512a1f527aba1c8e /src | |
| parent | Merge pull request #539 from linkmauve/framebuffer-formats (diff) | |
| parent | dyncom: Actually set the destination register for USAD8/USADA8. (diff) | |
| download | yuzu-004b8ef2aa7f6b8389d79ba95b18b09c8d59eb46.tar.gz yuzu-004b8ef2aa7f6b8389d79ba95b18b09c8d59eb46.tar.xz yuzu-004b8ef2aa7f6b8389d79ba95b18b09c8d59eb46.zip | |
Merge pull request #576 from lioncash/usad
dyncom: Actually set the destination register for USAD8/USADA8.
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/arm/dyncom/arm_dyncom_interpreter.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/arm/dyncom/arm_dyncom_interpreter.cpp b/src/core/arm/dyncom/arm_dyncom_interpreter.cpp index f4b3c4734..a8b3c1276 100644 --- a/src/core/arm/dyncom/arm_dyncom_interpreter.cpp +++ b/src/core/arm/dyncom/arm_dyncom_interpreter.cpp | |||
| @@ -3211,6 +3211,7 @@ static ARM_INST_PTR INTERPRETER_TRANSLATE(usada8)(unsigned int inst, int index) | |||
| 3211 | 3211 | ||
| 3212 | inst_cream->op1 = BITS(inst, 20, 24); | 3212 | inst_cream->op1 = BITS(inst, 20, 24); |
| 3213 | inst_cream->op2 = BITS(inst, 5, 7); | 3213 | inst_cream->op2 = BITS(inst, 5, 7); |
| 3214 | inst_cream->Rd = BITS(inst, 16, 19); | ||
| 3214 | inst_cream->Rm = BITS(inst, 8, 11); | 3215 | inst_cream->Rm = BITS(inst, 8, 11); |
| 3215 | inst_cream->Rn = BITS(inst, 0, 3); | 3216 | inst_cream->Rn = BITS(inst, 0, 3); |
| 3216 | inst_cream->Ra = BITS(inst, 12, 15); | 3217 | inst_cream->Ra = BITS(inst, 12, 15); |