Found and fixed the source of the new testbench slow down. I accidentally increased the size of the signature buffer by 10x.

This commit is contained in:
Ross Thompson 2023-06-14 14:11:25 -05:00
parent 7fb58f5cac
commit 19b7819d53

View File

@ -845,7 +845,7 @@ task automatic CheckSignature;
input integer begin_signature_addr;
output integer errors;
localparam SIGNATURESIZE = 50000000;
localparam SIGNATURESIZE = 5000000;
integer i;
logic [31:0] sig32[0:SIGNATURESIZE];
logic [`XLEN-1:0] signature[0:SIGNATURESIZE];