3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-11 05:30:53 +00:00

verilog: support module scope identifiers in parametric modules

This commit is contained in:
Zachary Snow 2021-03-04 14:07:56 -05:00 committed by Zachary Snow
parent 3d9698153f
commit 4f187d53c5
2 changed files with 37 additions and 4 deletions

View file

@ -0,0 +1,29 @@
`default_nettype none
module Example(o1, o2);
parameter [31:0] v1 = 10;
parameter [31:0] v2 = 20;
output [31:0] o1, o2;
assign Example.o1 = Example.v1;
assign Example.o2 = Example.v2;
endmodule
module ExampleLong(o1, o2);
parameter [31:0] ThisIsAnExtremelyLongParameterNameToTriggerTheSHA1Checksum1 = 10;
parameter [31:0] ThisIsAnExtremelyLongParameterNameToTriggerTheSHA1Checksum2 = 20;
output [31:0] o1, o2;
assign ExampleLong.o1 = ExampleLong.ThisIsAnExtremelyLongParameterNameToTriggerTheSHA1Checksum1;
assign ExampleLong.o2 = ExampleLong.ThisIsAnExtremelyLongParameterNameToTriggerTheSHA1Checksum2;
endmodule
module top(
output [31:0] a1, a2, b1, b2, c1, c2,
output [31:0] d1, d2, e1, e2, f1, f2
);
Example a(a1, a2);
Example #(1) b(b1, b2);
Example #(1, 2) c(c1, c2);
ExampleLong d(d1, d2);
ExampleLong #(1) e(e1, e2);
ExampleLong #(1, 2) f(f1, f2);
endmodule