diff --git a/desmume/src/arm_instructions.cpp b/desmume/src/arm_instructions.cpp index e9dd68808..6b0db4c2f 100644 --- a/desmume/src/arm_instructions.cpp +++ b/desmume/src/arm_instructions.cpp @@ -3209,7 +3209,7 @@ TEMPLATE static u32 FASTCALL OP_BX(const u32 i) if (REG_POS(i, 0) == 15) { - printf("ARM%c: BX using PC as operand\n", PROCNUM?'7':'9'); + //printf("ARM%c: BX using PC as operand\n", PROCNUM?'7':'9'); //emu_halt(); } cpu->CPSR.bits.T = BIT0(tmp); diff --git a/desmume/src/thumb_instructions.cpp b/desmume/src/thumb_instructions.cpp index 1be3b339e..152ce5daa 100644 --- a/desmume/src/thumb_instructions.cpp +++ b/desmume/src/thumb_instructions.cpp @@ -1135,7 +1135,7 @@ TEMPLATE static u32 FASTCALL OP_BX_THUMB(const u32 i) //----- the instruction are UNPREDICTABLE (because the value read for R15 has bits[1:0]==0b10). if (Rm == 15) { - printf("THUMB%c: BX using PC as operand\n", PROCNUM?'7':'9'); + //printf("THUMB%c: BX using PC as operand\n", PROCNUM?'7':'9'); //emu_halt(); } cpu->CPSR.bits.T = BIT0(Rm);