yosys/tests/asicworld/code_verilog_tutorial_bus_c...

9 lines
141 B
Verilog
Raw Normal View History

2013-01-05 04:13:26 -06:00
module bus_con (a,b, y);
input [3:0] a, b;
output [7:0] y;
wire [7:0] y;
assign y = {a,b};
endmodule