Skip to content

Commit

Permalink
[ARM64_DYNAREC] Fixed SQXT(U)N printer
Browse files Browse the repository at this point in the history
  • Loading branch information
ptitSeb committed Jan 10, 2025
1 parent 0d8e02a commit d8669d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dynarec/arm64/arm64_printer.c
Original file line number Diff line number Diff line change
Expand Up @@ -1649,7 +1649,7 @@ const char* arm64_print(uint32_t opcode, uintptr_t addr)
}
if(isMask(opcode, "01U11110ff100001010010nnnnnddddd", &a)) {
const char Z[] = {'B', 'H', 'S', 'D', '?'};
snprintf(buff, sizeof(buff), "SQXT%sN %c%d, %c%d", a.U?"U":"", Z[sf], Rn, Z[sf+1], Rm);
snprintf(buff, sizeof(buff), "SQXT%sN %c%d, %c%d", a.U?"U":"", Z[sf], Rd, Z[sf+1], Rn);
return buff;
}

Expand Down

0 comments on commit d8669d7

Please sign in to comment.