add missing files

This commit is contained in:
2022-01-10 22:51:48 +01:00
parent b72ec4ba8a
commit d08ae5b8b2
4 changed files with 80 additions and 0 deletions

9
bitrep.h Normal file
View File

@ -0,0 +1,9 @@
#pragma once
const char *bit_rep[16] =
{
[ 0] = "0000", [ 1] = "0001", [ 2] = "0010", [ 3] = "0011",
[ 4] = "0100", [ 5] = "0101", [ 6] = "0110", [ 7] = "0111",
[ 8] = "1000", [ 9] = "1001", [10] = "1010", [11] = "1011",
[12] = "1100", [13] = "1101", [14] = "1110", [15] = "1111",
};