From 7af6d7f07d6b6ef73fdec4af84858fd5cb648c45 Mon Sep 17 00:00:00 2001 From: tangxifan Date: Wed, 13 Jan 2021 15:38:44 -0700 Subject: [PATCH] [Benchmark] change the pin sequence of counter4bit_2clock to be easy for testbench generation --- .../micro_benchmark/counter4bit_2clock/counter4bit_2clock.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openfpga_flow/benchmarks/micro_benchmark/counter4bit_2clock/counter4bit_2clock.v b/openfpga_flow/benchmarks/micro_benchmark/counter4bit_2clock/counter4bit_2clock.v index c6cccf7dc..93f7dc07b 100644 --- a/openfpga_flow/benchmarks/micro_benchmark/counter4bit_2clock/counter4bit_2clock.v +++ b/openfpga_flow/benchmarks/micro_benchmark/counter4bit_2clock/counter4bit_2clock.v @@ -1,4 +1,4 @@ -module counter4bit_2clock(clk0, q0, rst0, clk1, q1, rst1); +module counter4bit_2clock(clk0, rst0, clk1, rst1, q0, q1); input clk0; input rst0;