题解 | #信号级联合并#
信号级联合并
https://www.nowcoder.com/practice/1cc0fc70308844669d695d99a5576e73
`timescale 1ns/1ns
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
信号级联合并
https://www.nowcoder.com/practice/1cc0fc70308844669d695d99a5576e73
`timescale 1ns/1ns
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
相关推荐