This block converts a decimal number to a binary number
FUNCTIONS
Connect the decimal number to be represented as an 8-bit binary number to the input AI. The output is the 8-bit number.
OUTPUT INFORMATION:
Output: | Q1 | Q2 | Q3 | Q4 | Q5 | Q6 | Q7 | Q8 |
Value: | 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128 |
EXAMPLE
The value 11 would have the following representation:
Q1 = 1 Q2 = 1 Q3 = 0 Q4 = 1 Q5 = 0 Q6 = 0 Q7 = 0 Q8 = 0