From 2caa4d54188338226494daa53d024a52572bd3a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joachim=20Stro=CC=88mbergson?= Date: Fri, 15 Dec 2017 08:29:00 +0100 Subject: Adding the error port that went missing. Sloppy. --- src/tb/tb_aes.v | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/tb') 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) ); -- cgit v1.2.3