mirror of https://github.com/YosysHQ/yosys.git
10 lines
134 B
Coq
10 lines
134 B
Coq
|
module test(input in, output reg [1:0] out);
|
||
|
|
||
|
always @(in)
|
||
|
begin
|
||
|
out = in;
|
||
|
out = out + in;
|
||
|
end
|
||
|
|
||
|
endmodule
|