汇编语言的 JNB 是什么?

AGAIN: JNB TF0 AGAIN
这句话是说TF0为0的时候跳转吗?

一般用于无符号比较,比如前面会有个CMP指令。
JNB--->jump Not Below不小于则转移

是AGAIN: JNB TF0么?(不小于的时候,则跳转到TF0处)
温馨提示:答案为网友推荐,仅供参考
第1个回答  2010-05-09
JNB是按键控制指令,只对位(1B=8b)进行执行,例如(P0.0,P0.1,P0.2,P0.3,P0.4,P0.5,P0.6,P0.7)进行执行!但不能用于累加器A或P0,P1,P2,P3执行!
第2个回答  2019-03-26
位判零转移指令,如 JNB ACC.0 L3 意思是累加器最低位为0则转L3执行。
第3个回答  2010-05-06
JAE/JNB 大于或等于转移
第4个回答  2018-07-06

JNB指代两种情况:

第一种:51单片机中

The JNB instruction branches to the specified address if the specified bit operand has a value of 0. Otherwise, execution continues with the next instruction. No flags are affected by this instruction.{引用于:网页链接}  如果条件为0则跳转

第二种:win32汇编

无符号不小于则跳转,即条件>=则跳转

相似回答