Skip to content

Commit a0b312b

Browse files
authored
Fix syntax for module declaration in counter2.sv
1 parent dbd1e7f commit a0b312b

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

regression/ebmc/ranking-function/counter2.sv

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@
22

33
module main(
44
input logic clk,
5-
input logic reset
6-
output logic [3:0] counter,
7-
);
5+
input logic reset,
6+
output logic [3:0] counter);
87

98
always_ff @(posedge clk or posedge reset)
109
if (reset)

0 commit comments

Comments
 (0)