aboutsummaryrefslogtreecommitdiff
path: root/src/tb
diff options
context:
space:
mode:
authorJoachim StroĢˆmbergson <joachim@secworks.se>2017-12-15 08:29:00 +0100
committerJoachim StroĢˆmbergson <joachim@secworks.se>2017-12-15 08:29:00 +0100
commit2caa4d54188338226494daa53d024a52572bd3a4 (patch)
tree1a1b8ccde5446997d936a60b56f6f14691a25ee7 /src/tb
parent0361065e15bfa903aaee988b8757419a120735c6 (diff)
Adding the error port that went missing. Sloppy.
Diffstat (limited to 'src/tb')
-rw-r--r--src/tb/tb_aes.v4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tb/tb_aes.v b/src/tb/tb_aes.v
index ae25130..188a21a 100644
--- a/src/tb/tb_aes.v
+++ b/src/tb/tb_aes.v
@@ -110,6 +110,7 @@ module tb_aes();
reg [7 : 0] tb_address;
reg [31 : 0] tb_write_data;
wire [31 : 0] tb_read_data;
+ wire tb_error;
//----------------------------------------------------------------
@@ -122,7 +123,8 @@ module tb_aes();
.we(tb_we),
.address(tb_address),
.write_data(tb_write_data),
- .read_data(tb_read_data)
+ .read_data(tb_read_data),
+ .error(tb_error)
);