diff options
author | Lioncash <mathew1800@gmail.com> | 2014-12-19 03:44:39 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2014-12-19 05:38:57 +0100 |
commit | 00e8ec4a9ed2d7c1877e6dfe3f520cf072b5fe17 (patch) | |
tree | 0ebbf9db40089cf01d5198cb5264c38feef33501 /src/core | |
parent | Merge pull request #299 from lioncash/join (diff) | |
download | yuzu-00e8ec4a9ed2d7c1877e6dfe3f520cf072b5fe17.tar yuzu-00e8ec4a9ed2d7c1877e6dfe3f520cf072b5fe17.tar.gz yuzu-00e8ec4a9ed2d7c1877e6dfe3f520cf072b5fe17.tar.bz2 yuzu-00e8ec4a9ed2d7c1877e6dfe3f520cf072b5fe17.tar.lz yuzu-00e8ec4a9ed2d7c1877e6dfe3f520cf072b5fe17.tar.xz yuzu-00e8ec4a9ed2d7c1877e6dfe3f520cf072b5fe17.tar.zst yuzu-00e8ec4a9ed2d7c1877e6dfe3f520cf072b5fe17.zip |
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/arm/interpreter/armemu.cpp | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/src/core/arm/interpreter/armemu.cpp b/src/core/arm/interpreter/armemu.cpp index b9ac8b9ad..399ee0886 100644 --- a/src/core/arm/interpreter/armemu.cpp +++ b/src/core/arm/interpreter/armemu.cpp @@ -6326,7 +6326,30 @@ L_stm_s_takeabort: printf ("Unhandled v6 insn: smmla/smmls/smmul\n"); break; case 0x78: - printf ("Unhandled v6 insn: usad/usada8\n"); + if (BITS(20, 24) == 0x18) + { + const u8 rm_idx = BITS(8, 11); + const u8 rn_idx = BITS(0, 3); + const u8 rd_idx = BITS(16, 19); + + const u32 rm_val = state->Reg[rm_idx]; + const u32 rn_val = state->Reg[rn_idx]; + + const u8 diff1 = (u8)::abs((rn_val & 0xFF) - (rm_val & 0xFF)); + const u8 diff2 = (u8)::abs(((rn_val >> 8) & 0xFF) - ((rm_val >> 8) & 0xFF)); + const u8 diff3 = (u8)::abs(((rn_val >> 16) & 0xFF) - ((rm_val >> 16) & 0xFF)); + const u8 diff4 = (u8)::abs(((rn_val >> 24) & 0xFF) - ((rm_val >> 24) & 0xFF)); + + u32 finalDif = (diff1 + diff2 + diff3 + diff4); + + // Op is USADA8 if true. + const u8 ra_idx = BITS(12, 15); + if (ra_idx != 15) + finalDif += state->Reg[ra_idx]; + + state->Reg[rd_idx] = finalDif; + return 1; + } break; case 0x7a: printf ("Unhandled v6 insn: usbfx\n"); |