From 91e50d58b491dd8d7162ac9fb08c45a6a82b7e3d Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Thu, 4 Nov 2021 20:26:32 +0200 Subject: [PATCH] Disassembler BT -> BRA fix also modified other cc type instructions. --- disasm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/disasm.cpp b/disasm.cpp index 816a3ebe..9e954ee5 100644 --- a/disasm.cpp +++ b/disasm.cpp @@ -1960,7 +1960,7 @@ uae_u32 m68k_disasm_2(TCHAR *buf, int bufsize, uaecptr pc, uae_u16 *bufpc, int b } } else { _tcsncpy(ccpt, ccnames[dp->cc], 2); - if (dp->cc == 0) { + if (dp->mnemo == i_Bcc && dp->cc == 0) { _tcscpy(ccpt, _T("RA")); // BT -> BRA } } -- 2.47.3