From 3a42b0ac3d97775ef77db345b9a96ff6153eff6a Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Thu, 21 Apr 2022 16:31:25 -0400 Subject: [PATCH] Correct BSR test. --- Processors/68000/Implementation/68000Storage.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Processors/68000/Implementation/68000Storage.cpp b/Processors/68000/Implementation/68000Storage.cpp index ee1099fe1..9a7f059a0 100644 --- a/Processors/68000/Implementation/68000Storage.cpp +++ b/Processors/68000/Implementation/68000Storage.cpp @@ -942,14 +942,14 @@ struct ProcessorStorageConstructor { case Operation::TSTl: opname = "TST.l"; break; case Operation::JMP: - if(opcode_& 0x40) { + if(opcode_ & 0x40) { opname = "JMP"; } else { opname = "JSR"; } break; case Operation::Bcc: - if(opcode_& 0x100) { + if((opcode_ & 0xf00) == 0x100) { opname = "BSR"; } else { opname = "Bcc";