Skip to content

Commit 65272ae

Browse files
authored
Merge pull request #1310 from diffblue/basic_config1
Verilog: KNOWNBUG test for config
2 parents 4fe66e8 + 1183cf4 commit 65272ae

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
KNOWNBUG
2+
basic_config1.sv
3+
--module top
4+
^EXIT=0$
5+
^SIGNAL=0$
6+
--
7+
^warning: ignoring
8+
--
9+
This does not parse.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
module SUB;
2+
parameter P = 1;
3+
endmodule
4+
5+
module top;
6+
SUB sub();
7+
endmodule
8+
9+
config some_config;
10+
design top;
11+
instance top.sub use #(.P(2));
12+
endconfig
13+

0 commit comments

Comments
 (0)