]> Git Repo - qemu.git/commitdiff
comments fix
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>
Sun, 18 Jan 2004 21:43:36 +0000 (21:43 +0000)
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>
Sun, 18 Jan 2004 21:43:36 +0000 (21:43 +0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@551 c046a42c-6fe2-441c-8c8c-71466251a162

target-i386/ops_template.h

index 5ffde89e48f78ef1766e9cdc3cc9bddb5ec87c8d..037c4306a3aa9bbfc9ba40db69e782f535215e35 100644 (file)
@@ -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 */
     }
This page took 0.026055 seconds and 4 git commands to generate.