From 18dbd788e6bf27157a8b9695e5d80c6d0d682e01 Mon Sep 17 00:00:00 2001 From: Nekotekina Date: Sat, 4 Apr 2020 15:35:25 +0300 Subject: [PATCH] SPU DisAsm: fix disasm for BINZ and similar instruction --- rpcs3/Emu/Cell/SPUDisAsm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/SPUDisAsm.h b/rpcs3/Emu/Cell/SPUDisAsm.h index 2fb8661a78..b640bc6042 100644 --- a/rpcs3/Emu/Cell/SPUDisAsm.h +++ b/rpcs3/Emu/Cell/SPUDisAsm.h @@ -152,7 +152,7 @@ private: } void DisAsm(std::string op, field_de_t de, const char* a1, const char* a2) { - Write(fmt::format("%s %s", FixOp(op.append(BrIndirectSuffix(de))), a1, a2)); + Write(fmt::format("%s %s,%s", FixOp(op.append(BrIndirectSuffix(de))), a1, a2)); } public: