From 28a9cddf2fa7e934ea790b0e59fcbeddf0c125bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joachim=20Stro=CC=88mbergson?= Date: Fri, 2 Oct 2015 15:39:34 +0200 Subject: Removed api error port and added error bit in status register that is set when api access violations happens and cleared by writing the status register. --- src/tb/tb_aes.v | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/tb') diff --git a/src/tb/tb_aes.v b/src/tb/tb_aes.v index 0694250..377ed76 100644 --- a/src/tb/tb_aes.v +++ b/src/tb/tb_aes.v @@ -115,7 +115,6 @@ module tb_aes(); reg [7 : 0] tb_address; reg [31 : 0] tb_write_data; wire [31 : 0] tb_read_data; - wire tb_error; //---------------------------------------------------------------- @@ -128,8 +127,7 @@ module tb_aes(); .we(tb_we), .address(tb_address), .write_data(tb_write_data), - .read_data(tb_read_data), - .error(tb_error) + .read_data(tb_read_data) ); -- cgit v1.2.3