mirror of https://github.com/YosysHQ/yosys.git
9 lines
141 B
Coq
9 lines
141 B
Coq
|
module bus_con (a,b, y);
|
||
|
input [3:0] a, b;
|
||
|
output [7:0] y;
|
||
|
wire [7:0] y;
|
||
|
|
||
|
assign y = {a,b};
|
||
|
|
||
|
endmodule
|