add 2-digit bit BCD numbers

Thread Starter

help_please

Joined Feb 18, 2012
6
I believe I have this working correctly but am not positive what happens once you hit 100, do you have another carry to add to the ones place?

For example:

Is 57 + 57 suppose to equal 115?
99 + 99 = 199?
99 + 1 = 101?
99 + 2 = 102?

Yet 17 + 59 = 76?

Just want to make sure I'm doing this right!!
 
Last edited:

MrChips

Joined Oct 2, 2009
30,808
Sorry, you didn't say you were displaying three digits. In that case:

57 + 57 = 114

99 + 99 = 198

99 + 1 = 100

99 + 2 = 101
 
Top