This commit is contained in:
2017-07-24 17:13:16 -04:00
commit ac42f6e84a
6 changed files with 1276 additions and 0 deletions

7
Makefile Normal file
View File

@@ -0,0 +1,7 @@
LIBFILES=nibble.c
TESTFILES=$(wildcard tests/*.c)
test:
gcc $(LIBFILES) $(TESTFILES) -o test_bcd
./test_bcd
rm test_bcd