From da2675a3fea4d86f6e5f31c6a8e48e8400264939 Mon Sep 17 00:00:00 2001 From: Byron Lathi Date: Sat, 18 Nov 2023 16:43:19 -0800 Subject: [PATCH] Reduce sim time for full sim --- hw/efinix_fpga/simulation/src/sim_top.sv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/efinix_fpga/simulation/src/sim_top.sv b/hw/efinix_fpga/simulation/src/sim_top.sv index 237db49..ec04ff0 100644 --- a/hw/efinix_fpga/simulation/src/sim_top.sv +++ b/hw/efinix_fpga/simulation/src/sim_top.sv @@ -53,7 +53,7 @@ initial begin button_reset <= '0; repeat(10) @(r_clk_cpu); button_reset <= '1; - repeat(5000000) @(r_clk_cpu); + repeat(1250000) @(posedge r_clk_cpu); $finish(); end