compare:
push psw
cjne a, b, clt
; a == b
; implement code here
jmp compare_
clt:
jc lt
; a > b
lt:
; a < b
compare_:
pop psw
ret