"The Carry bit (C) is set if operand1 is less than operand2, otherwise it is cleared."

mov	a,dph
cjne	a,#075h,Next
Next:             ;always go to this line
jnc	Error     ;if c is set, acc must be lower than 75h 
                  ;if c is clr, acc is higher or equal to 75
;if we get here, acc is lower than 75h

Error:
;if we get here, acc is higher than or equals 75h
