Skip to content

Instantly share code, notes, and snippets.

@kingster
Created September 22, 2011 13:14
Show Gist options
  • Save kingster/1234734 to your computer and use it in GitHub Desktop.
Save kingster/1234734 to your computer and use it in GitHub Desktop.
8051 Assembly IF/ELSE
CJNE A, #27, NOT_EQL
EQL: ;A=27
; Your Code Here
SJMP END_CMP
NOT_EQL: ; Your Code Here
JC A_LESS
A_GREATER: ;A > 27
; Your Code Here
SJMP END_CMP
A_LESS: ;A < 27
; Your Code Here
END_CMP: ;Finished
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment