aboutsummaryrefslogtreecommitdiffstats
path: root/tests/simple/paramods.v
diff options
context:
space:
mode:
Diffstat (limited to 'tests/simple/paramods.v')
-rw-r--r--tests/simple/paramods.v37
1 files changed, 37 insertions, 0 deletions
diff --git a/tests/simple/paramods.v b/tests/simple/paramods.v
new file mode 100644
index 000000000..94fd2dfc2
--- /dev/null
+++ b/tests/simple/paramods.v
@@ -0,0 +1,37 @@
+
+module test1(a, b, x, y);
+
+input [7:0] a, b;
+output [7:0] x, y;
+
+inc #(.step(3)) inc_a (.in(a), .out(x));
+inc #(.width(4), .step(7)) inc_b (b, y);
+
+endmodule
+
+// -----------------------------------
+
+module test2(a, b, x, y);
+
+input [7:0] a, b;
+output [7:0] x, y;
+
+inc #(5) inc_a (.in(a), .out(x));
+inc #(4, 7) inc_b (b, y);
+
+endmodule
+
+// -----------------------------------
+
+module inc(in, out);
+
+parameter width = 8;
+parameter step = 1;
+
+input [width-1:0] in;
+output [width-1:0] out;
+
+assign out = in + step;
+
+endmodule
+