8085 program to convert decimal into binary?
Answers
Answered by
7
8085 program to convert a BCD number to binary
Load the BCD number in the accumulator.
Unpack the 2 digit BCD number into two separate digits. Let the left digit be BCD1 and the right one BCD. ...
Multiply BCD1 by 10 and add BCD2 to it.
Similar questions