diff options
Diffstat (limited to 'src/tb')
-rw-r--r-- | src/tb/tb_keywrap.v | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tb/tb_keywrap.v b/src/tb/tb_keywrap.v index 0b9eda3..a13521c 100644 --- a/src/tb/tb_keywrap.v +++ b/src/tb/tb_keywrap.v @@ -269,7 +269,7 @@ module tb_keywrap(); $display("a_reg = 0x%0x a_new = 0x%0x a_we = 0x%0x", dut.core.a_reg, dut.core.a_new, dut.core.a_we); $display("core_we = 0x%0x core_addr = 0x%0x", - dut.core.core_we, dut.core.block_ctr_reg); + dut.core.core_we, dut.core.core_addr); $display("core_rd_data = 0x%0x core_wr_data = 0x%0x ", dut.core.core_rd_data, dut.core.core_wr_data); $display(""); @@ -292,6 +292,7 @@ module tb_keywrap(); end $display(""); + $display(""); end endtask // dump_dut_state |