mirror of
https://github.com/zachjs/sv2v.git
synced 2026-09-03 08:03:13 +02:00
split out basic suite tests with refs to new core suite
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
module Example;
|
||||
parameter FOO = 1;
|
||||
initial $display("%0d", FOO);
|
||||
endmodule
|
||||
|
||||
module top;
|
||||
Example e[5:0]();
|
||||
defparam e[0].FOO = 1;
|
||||
defparam e[1].FOO = 2;
|
||||
defparam e[2].FOO = 4;
|
||||
defparam e[3].FOO = 8;
|
||||
defparam e[4].FOO = 16;
|
||||
defparam e[5].FOO = 32;
|
||||
endmodule
|
||||
Reference in New Issue
Block a user