summaryrefslogtreecommitdiff
path: root/tests/asicworld/code_verilog_tutorial_bus_con.v
blob: b100c813608438d4748da8728d092ca532787300 (plain)
1
2
3
4
5
6
7
8
module bus_con (a,b, y);
  	  	input [3:0] a, b;
  	  	output [7:0] y;
  	  	wire [7:0] y;
  	  	 
  	  	assign y = {a,b};
  	  	 
endmodule