Assembly Language Program for Unpacking the Packed BCD number in 8085 Microprocessor
Binary coded decimal (BCD) is a way to express each of the decimal digits with a binary code. This means that each decimal digit, 0 through 9, is represented by a binary code of four bits. Eg: 98 => 10011000 Unpacking the BCD number is separating each BCD digit. Eg: 98 can be separated as 09…
Read More “Assembly Language Program for Unpacking the Packed BCD number in 8085 Microprocessor” »