发布网友 发布时间:2022-04-29 18:37
共5个回答
热心网友 时间:2022-06-19 09:28
一般用于无符号比较,比如前面会有个CMP指令。热心网友 时间:2022-06-19 09:29
JNB是按键控制指令,只对位(1B=8b)进行执行,例如(P0.0,P0.1,P0.2,P0.3,P0.4,P0.5,P0.6,P0.7)进行执行!但不能用于累加器A或P0,P1,P2,P3执行!热心网友 时间:2022-06-19 09:29
位判零转移指令,如 JNB ACC.0 L3 意思是累加器最低位为0则转L3执行。热心网友 时间:2022-06-19 09:30
JAE/JNB 大于或等于转移热心网友 时间:2022-06-19 09:30
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汇编
无符号不小于则跳转,即条件>=则跳转