LDA value_A 
CMP value_B 
BEQ a_equals_b 
BCC a_greater_than_b 
BCS a_less_than_b


Do remember that both value_A and value_B will need to share
the space in the accumulator when making a compare this way.
This means that if you have an 8-bit accu set then values
more than 128 (127) will be set to aforementioned number.
This goes for both value_A and value_B, obviously!
