summaryrefslogtreecommitdiff
path: root/target-i386
diff options
context:
space:
mode:
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2004-01-18 21:43:36 +0000
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2004-01-18 21:43:36 +0000
commitdebf7a7c7e16a271b413e886c11224aa9e20f034 (patch)
tree16fa4a515b656b1d1ca4fe065a064224ab37c39b /target-i386
parent5a1388b6df19d01894e409d00f021334e843dffc (diff)
downloadqemu-debf7a7c7e16a271b413e886c11224aa9e20f034.tar.gz
comments fix
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@551 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-i386')
-rw-r--r--target-i386/ops_template.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/target-i386/ops_template.h b/target-i386/ops_template.h
index 5ffde89e48..037c4306a3 100644
--- a/target-i386/ops_template.h
+++ b/target-i386/ops_template.h
@@ -514,7 +514,7 @@ void OPPROTO glue(glue(op_bsf, SUFFIX), _T0_cc)(void)
res >>= 1;
}
T0 = count;
- CC_DST = 1; /* ZF = 1 */
+ CC_DST = 1; /* ZF = 0 */
} else {
CC_DST = 0; /* ZF = 1 */
}
@@ -532,7 +532,7 @@ void OPPROTO glue(glue(op_bsr, SUFFIX), _T0_cc)(void)
res <<= 1;
}
T0 = count;
- CC_DST = 1; /* ZF = 1 */
+ CC_DST = 1; /* ZF = 0 */
} else {
CC_DST = 0; /* ZF = 1 */
}