chg: skeleton files for smartcard / flashmem

This commit is contained in:
iceman1001 2018-03-05 20:08:28 +01:00
parent 24482211ad
commit 7fb6aa21ab

View file

@ -22,6 +22,7 @@ APP_CFLAGS = -DWITH_CRC \
-DWITH_ISO14443a \ -DWITH_ISO14443a \
-DWITH_ICLASS \ -DWITH_ICLASS \
-DWITH_FELICA \ -DWITH_FELICA \
-DWITH_FLASH \
-DWITH_HFSNOOP \ -DWITH_HFSNOOP \
-DWITH_HF_YOUNG \ -DWITH_HF_YOUNG \
-fno-strict-aliasing -ffunction-sections -fdata-sections -fno-strict-aliasing -ffunction-sections -fdata-sections
@ -53,6 +54,7 @@ SRC_CRC = crc.c crc16.c crc32.c
SRC_ICLASS = iclass.c optimized_cipher.c SRC_ICLASS = iclass.c optimized_cipher.c
SRC_LEGIC = legicrf.c legic_prng.c SRC_LEGIC = legicrf.c legic_prng.c
SRC_FLASH = flashmem.c SRC_FLASH = flashmem.c
SRC_SMARTCARD = smartcard.c
SRC_BEE = bee.c SRC_BEE = bee.c
#the FPGA bitstream files. Note: order matters! #the FPGA bitstream files. Note: order matters!
@ -78,6 +80,7 @@ THUMBSRC = start.c \
$(SRC_ZLIB) \ $(SRC_ZLIB) \
$(SRC_LEGIC) \ $(SRC_LEGIC) \
$(SRC_FLASH) \ $(SRC_FLASH) \
$(SRC_SMARTCARD) \
appmain.c \ appmain.c \
printf.c \ printf.c \
util.c \ util.c \