From 0ab3199f5aaa792a577fb3ec8b7310c3c4213eb2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Joachim=20Stro=CC=88mbergson?= <joachim@secworks.se>
Date: Mon, 21 May 2018 19:03:36 +0200
Subject: Increased number of inverse S-boxes to 16 and removed S-box
 scheduling.

---
 src/tb/tb_aes_decipher_block.v | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

(limited to 'src/tb')

diff --git a/src/tb/tb_aes_decipher_block.v b/src/tb/tb_aes_decipher_block.v
index ec228c0..0475cf5 100644
--- a/src/tb/tb_aes_decipher_block.v
+++ b/src/tb/tb_aes_decipher_block.v
@@ -152,13 +152,12 @@ module tb_aes_decipher_block();
 
       $display("Control states");
       $display("round = 0x%01x", dut.round);
-      $display("dec_ctrl = 0x%01x, update_type = 0x%01x, sword_ctr = 0x%01x, round_ctr = 0x%01x",
-               dut.dec_ctrl_reg, dut.update_type, dut.sword_ctr_reg, dut.round_ctr_reg);
+      $display("dec_ctrl = 0x%01x, update_type = 0x%01x, round_ctr = 0x%01x",
+               dut.dec_ctrl_reg, dut.update_type, dut.round_ctr_reg);
       $display("");
 
       $display("Internal data values");
       $display("round_key = 0x%016x", dut.round_key);
-      $display("sboxw = 0x%08x, new_sboxw = 0x%08x", dut.tmp_sboxw, dut.new_sboxw);
       $display("block_w0_reg = 0x%08x, block_w1_reg = 0x%08x, block_w2_reg = 0x%08x, block_w3_reg = 0x%08x",
                dut.block_w0_reg, dut.block_w1_reg, dut.block_w2_reg, dut.block_w3_reg);
       $display("");
-- 
cgit v1.2.3