From a3bbaacb51fb7b7842541428bbb66aca5f0bdb87 Mon Sep 17 00:00:00 2001 From: Sjoerd van der Berg Date: Mon, 12 Jan 2004 10:05:57 +0000 Subject: [PATCH] Fix BTRd instruction, missed a break; Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1573 --- src/cpu/core_full/op.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cpu/core_full/op.h b/src/cpu/core_full/op.h index 58458806..2af8b420 100644 --- a/src/cpu/core_full/op.h +++ b/src/cpu/core_full/op.h @@ -586,6 +586,7 @@ switch (inst.code.op) { FillFlags(); SETFLAGBIT(CF,(inst.op1.d & (1 << (inst.op2.d & 31)))); inst.op1.d&=~(1 << (inst.op2.d & 31)); + break; case O_BSWAP: BSWAP(inst.op1.d); break;