diff options
author | Joachim StroĢmbergson <joachim@secworks.se> | 2018-07-05 15:34:02 +0200 |
---|---|---|
committer | Joachim StroĢmbergson <joachim@secworks.se> | 2018-07-05 15:34:02 +0200 |
commit | 9897e1e85a8b3e0c61444da792522cc4f5a58534 (patch) | |
tree | fb89fae92e882b9fc570e87675a2494c2fbe57fe /src/tb | |
parent | 732478fb1672a3ee16f10602ae443db7d0e9fd59 (diff) |
Fixed minor details in unwrap test case. Enabled unwrap test case.
Diffstat (limited to 'src/tb')
-rw-r--r-- | src/tb/tb_keywrap.v | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tb/tb_keywrap.v b/src/tb/tb_keywrap.v index b77a48c..545f031 100644 --- a/src/tb/tb_keywrap.v +++ b/src/tb/tb_keywrap.v @@ -496,7 +496,7 @@ module tb_keywrap(); dump_mem(6); - // Start wrapping and wait for wrap to complete. + // Start unwrapping and wait for unwrap to complete. $display("* Trying to start processing."); write_word(ADDR_CTRL, 32'h00000002); #(2 * CLK_PERIOD); @@ -504,7 +504,7 @@ module tb_keywrap(); $display("* Processing should be done."); - $display("Contents of memory and dut after wrap processing:"); + $display("Contents of memory and dut after unwrap processing:"); dump_mem(6); dump_dut_state(); @@ -744,8 +744,8 @@ module tb_keywrap(); reset_dut(); dump_dut_state(); - test_kwp_ae_128_1(); -// test_kwp_ad_128_1(); +// test_kwp_ae_128_1(); + test_kwp_ad_128_1(); // test_kwp_ae_128_2(); display_test_results(); |