nand2/07_Operating_System/00_HACK/Mux16.v
Michael Schröder 971b323822 added v2.0
2023-01-11 23:04:57 +01:00

18 lines
262 B
Verilog

/**
* 16-bit multiplexor:
* for i = 0..15 out[i] = a[i] if sel == 0
* b[i] if sel == 1
*/
`default_nettype none
module Mux16(
input [15:0] a,
input [15:0] b,
input sel,
output [15:0] out
);
assign out = sel?b:a;
endmodule