3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-26 21:16:03 +00:00

initial import

This commit is contained in:
Clifford Wolf 2013-01-05 11:13:26 +01:00
commit 7764d0ba1d
481 changed files with 54634 additions and 0 deletions

37
tests/simple/paramods.v Normal file
View file

@ -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