Skip to content

Instantly share code, notes, and snippets.

@ryangraham
Created May 7, 2020 12:54
Show Gist options
  • Save ryangraham/f406d97ee34edccc5424cac1be26763c to your computer and use it in GitHub Desktop.
Save ryangraham/f406d97ee34edccc5424cac1be26763c to your computer and use it in GitHub Desktop.
4-bit BCD
character decimal binary
0 0 0000
1 1 0001
2 2 0010
3 3 0011
4 4 0100
5 5 0101
6 6 0110
7 7 0111
8 8 1000
9 9 1001
A 10 1010
B 11 1011
C 12 1100
D 13 1101
E 14 1110
F 15 1111
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment