fix conversion of with CP marker : Zahlenformat = 11 (2-Byte Word digital)

This commit is contained in:
2020-07-03 17:55:59 +02:00
parent 25b203aabd
commit 9c1e9d1468
5 changed files with 263 additions and 71 deletions

View File

@@ -14,6 +14,9 @@ OPT = -O3 -Wall -mavx -mno-tbm -mf16c -mno-f16c
$(EXE) : $(SRC)main.cpp $(LIB)raweat.hpp
$(CCC) $(OPT) $< -o $@
eatdev : $(SRC)main_dev.cpp $(LIB)raweat.hpp
$(CCC) $(OPT) $< -o $@
# build target for conversion set of .raw files
eatall : $(SRC)eatall.cpp $(LIB)raweat.hpp
$(CCC) $(OPT) $< -o $@