您好!
MSP430X4XX的userguide里面介绍的指令:
BIT[.W] Test bits in destination
BIT.B Test bits in destination
Syntax BIT src,dst or BIT.W src,dst
Operation src .AND. dst
Description The source and destination operands are logically ANDed. The result affects
only the status bits. The source and destination operands are not affected.
Status Bits N: Set if MSB of result is set, reset otherwise
Z: Set if result is zero, reset otherwise
C: Set if result is not zero, reset otherwise (.NOT. zero)
V: Reset
其中关于状态位的描述“reset otherwise”和“reset otherwise (.NOT. zero)”到底是什么意思?
是不确定的意思吗?那以这些位来判断,到底准不准?