mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-10 21:20:53 +00:00
Fix valgrind tests when using verific
This commit is contained in:
parent
72e5498bdf
commit
bbf65702a1
5 changed files with 16 additions and 8 deletions
|
@ -3,7 +3,7 @@
|
|||
module module_scope_Example(o1, o2);
|
||||
parameter [31:0] v1 = 10;
|
||||
parameter [31:0] v2 = 20;
|
||||
output [31:0] o1, o2;
|
||||
output wire [31:0] o1, o2;
|
||||
assign module_scope_Example.o1 = module_scope_Example.v1;
|
||||
assign module_scope_Example.o2 = module_scope_Example.v2;
|
||||
endmodule
|
||||
|
@ -11,14 +11,14 @@ endmodule
|
|||
module module_scope_ExampleLong(o1, o2);
|
||||
parameter [31:0] ThisIsAnExtremelyLongParameterNameToTriggerTheSHA1Checksum1 = 10;
|
||||
parameter [31:0] ThisIsAnExtremelyLongParameterNameToTriggerTheSHA1Checksum2 = 20;
|
||||
output [31:0] o1, o2;
|
||||
output wire [31:0] o1, o2;
|
||||
assign module_scope_ExampleLong.o1 = module_scope_ExampleLong.ThisIsAnExtremelyLongParameterNameToTriggerTheSHA1Checksum1;
|
||||
assign module_scope_ExampleLong.o2 = module_scope_ExampleLong.ThisIsAnExtremelyLongParameterNameToTriggerTheSHA1Checksum2;
|
||||
endmodule
|
||||
|
||||
module module_scope_top(
|
||||
output [31:0] a1, a2, b1, b2, c1, c2,
|
||||
output [31:0] d1, d2, e1, e2, f1, f2
|
||||
output wire [31:0] a1, a2, b1, b2, c1, c2,
|
||||
output wire [31:0] d1, d2, e1, e2, f1, f2
|
||||
);
|
||||
module_scope_Example a(a1, a2);
|
||||
module_scope_Example #(1) b(b1, b2);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue