1
0
forked from tanchou/Verilog
Files
Verilog_Louis/Introduction/bidouille/Vector3_concat.v

7 lines
154 B
Coq
Raw Normal View History

2025-03-22 18:44:25 +01:00
module top_module (
input [4:0] a, b, c, d, e, f,
output [7:0] w, x, y, z );//
assign { w, x, y, z } = { a, b, c, d, e, f, 2'b11};
endmodule