mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-27 05:26:02 +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
|
@ -1,6 +1,6 @@
|
|||
`default_nettype none
|
||||
|
||||
module hierdefparam_top(input [7:0] A, output [7:0] Y);
|
||||
module hierdefparam_top(input wire [7:0] A, output wire [7:0] Y);
|
||||
generate begin:foo
|
||||
hierdefparam_a mod_a(.A(A), .Y(Y));
|
||||
end endgenerate
|
||||
|
@ -8,7 +8,7 @@ module hierdefparam_top(input [7:0] A, output [7:0] Y);
|
|||
defparam foo.mod_a.bar[1].mod_b.addvalue = 43;
|
||||
endmodule
|
||||
|
||||
module hierdefparam_a(input [7:0] A, output [7:0] Y);
|
||||
module hierdefparam_a(input wire [7:0] A, output wire [7:0] Y);
|
||||
genvar i;
|
||||
generate
|
||||
for (i = 0; i < 2; i=i+1) begin:bar
|
||||
|
@ -19,7 +19,7 @@ module hierdefparam_a(input [7:0] A, output [7:0] Y);
|
|||
assign bar[0].a = A, bar[1].a = bar[0].y, Y = bar[1].y;
|
||||
endmodule
|
||||
|
||||
module hierdefparam_b(input [7:0] A, output [7:0] Y);
|
||||
module hierdefparam_b(input wire [7:0] A, output wire [7:0] Y);
|
||||
parameter [7:0] addvalue = 44;
|
||||
assign Y = A + addvalue;
|
||||
endmodule
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue