mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-06 01:24:10 +00:00
9 lines
142 B
Coq
9 lines
142 B
Coq
module uut(in1, in2, in3, out1, out2);
|
|
|
|
input [8:0] in1, in2, in3;
|
|
output [8:0] out1, out2;
|
|
|
|
assign out1 = in1 + in2 + (in3 >> 4);
|
|
|
|
endmodule
|