Create a one-bit wide, 2-to-1 multiplexer. When sel=0, choose a. When sel=1, choose b.
创建一位宽的 2 对 1 多路复用器。当 sel=0 时,选择 a。当 sel=1 时,选择 b。
module top_module(
input a, b, sel,
output out );
assign out = sel ? b : a;
endmodule
Create a one-bit wide, 2-to-1 multiplexer. When sel=0, choose a. When sel=1, choose b.
创建一位宽的 2 对 1 多路复用器。当 sel=0 时,选择 a。当 sel=1 时,选择 b。
module top_module(
input a, b, sel,
output out );
assign out = sel ? b : a;
endmodule