allow extraneous semicolons in generate blocks

This commit is contained in:
Zachary Snow
2020-02-08 22:15:35 -05:00
parent 88c401e856
commit 4b3b09d2db
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -66,6 +66,7 @@ module top;
logic [0:31] c;
generate
;
for (genvar n = 0; n < 32; n = n + 1)
assign c[n] = n & 1;
endgenerate