notes

Personal notes
git clone git://git.laack.co/notes.git
Log | Files | Refs

BCD.md (256B)


      1 
      2 CA L3
      3 
      4 **Definition:** Binary coded decimal (BCD) is the process of encoding a decimal where each digit is a fixed number of bits.
      5 
      6 Ex. 
      7 
      8 Before: 10:37:49
      9 
     10 After: 0001 0000 : 0011 0111 : 0100 1001
     11 
     12 As you can see above, each digit is encode in a nibble.
     13