📜  8051 如何检查一个数字是否更大 - 无论代码示例

📅  最后修改于: 2022-03-11 14:57:10.589000             🧑  作者: Mango

代码示例1
CJNE  R0,#00H,NOTEQUAL
; equal code goes here, then branch out
NOTEQUAL:
JC GREATER
; less than code goes here, then branch out
GREATER:
; greater code goes here