check this link for the code:
http://www.dnatechindia.com/index.php/Code-Library/8051_ASSEMBLY/12-bit-HEX-to-BCD-Convertor.html
http://www.dnatechindia.com/index.php/Code-Library/8051_ASSEMBLY/8-bit-HEX-to-BCD-convertor.html
A: The conversion is simple really a group of FOUR bits are usually the best method to simplify a BCD of four bits in hexadecimal. Example 1111 is just written F If it was written in octal the bits will be 3 as 111 or 7. As BCD becomes longer and longer these two methods were used to simplify the code a128 bits in BCD will be 8 zeros and ones or simply FF in octal notation it becomes 277
12
In Binary-Coded Decimal (BCD) addition, the digit 6 plays a crucial role as a threshold for determining whether a correction is needed after standard binary addition. BCD represents decimal digits using four bits, and if the sum of two BCD digits exceeds 9 (which is 1001 in binary), a correction of 6 (0110 in binary) is added to bring the result back into valid BCD range. This adjustment ensures that the resulting sum correctly represents decimal values. Thus, 6 is effectively used to convert invalid BCD results back into valid representations.
BCD is a decimal number. BCD is one specific way to store decimal numbers in computer memory.
To represent the decimal number 47 in Binary-Coded Decimal (BCD), you first separate the digits: 4 and 7. In BCD, each digit is represented by its 4-bit binary equivalent. Therefore, 4 is represented as 0100 and 7 as 0111. Combining these, 47 in BCD is expressed as 0100 0111.
because 9 is a lucky number for bcd..............ha ha ha
Write a program to convert a 2-digit BCD number into hexadecimal
WRITE A PROGRAM TO CONVERT A 2-DIGIT bcd NUMBER INTO HEXADECIMAL
fish
66666
Write a program to convert a 2-digit BCD number into hexadecimal
explain decimal to BCD encoder
develop and test an assembly language to convert a two digit BCD number to binary
12
BCD can be converted into 7segment display by using an encoder.
Example Binary 00111000 Convert to Decimal 56 Convert to BCD by using groups of four binary numbers for each digit 5 6 0101 0110
No, it can be done in C.
Assembly language programe for multiplication