Add -O5 option to QuestaSim. Rerun benchmarks.

This commit is contained in:
2025-01-09 12:54:21 +03:00
parent c277e3482a
commit 2821d98c6b
10 changed files with 76 additions and 32 deletions

7
test-modelsim-O5/top.sv Normal file
View File

@@ -0,0 +1,7 @@
`timescale 1ps/1ps
module top #(parameter CPU_COUNT = 1024);
logic clock = 1'b0;
initial forever #(10ns/2) clock = ~clock;
testbench #(CPU_COUNT) testbench (clock);
endmodule