diff options
author | Joachim StroĢmbergson <joachim@secworks.se> | 2018-09-18 09:54:20 +0200 |
---|---|---|
committer | Joachim StroĢmbergson <joachim@secworks.se> | 2018-09-18 09:54:20 +0200 |
commit | 00fd27b23e578f5c92d856951645805be5dbab1a (patch) | |
tree | 09e41a1a36dc06fb0e27a0e00b80ec36b5bddbb6 /toolruns/Makefile | |
parent | f20979faa37d4f272fcce51af18b829027778614 (diff) |
Moved the mkmif instance into the core itself. Added API to read the key if DEBUG is set.
Diffstat (limited to 'toolruns/Makefile')
-rwxr-xr-x | toolruns/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toolruns/Makefile b/toolruns/Makefile index 1ca960b..3ea00bd 100755 --- a/toolruns/Makefile +++ b/toolruns/Makefile @@ -46,10 +46,10 @@ AES_SRC = $(AES_PATH)/aes_core.v $(AES_PATH)/aes_decipher_block.v $(AES_PATH)/ae MEM_SRC = ../src/rtl/keywrap_mem.v TB_MEM_SRC = ../src/tb/tb_keywrap_mem.v -CORE_SRC = ../src/rtl/keywrap_core.v $(AES_SRC) $(MEM_SRC) +CORE_SRC = ../src/rtl/keywrap_core.v $(AES_SRC) $(MEM_SRC) $(MKMIF_SRC) TB_CORE_SRC = ../src/tb/tb_keywrap_core.v -TOP_SRC = ../src/rtl/keywrap.v $(CORE_SRC) $(MKMIF_SRC) +TOP_SRC = ../src/rtl/keywrap.v $(CORE_SRC) TB_TOP_SRC = ../src/tb/tb_keywrap.v CC = iverilog |