. ├── dst_agent │ ├── mux_rd_agent.sv │ ├── mux_rd_mon.sv │ └── mux_rd_xtn.sv ├── intf │ └── mux_intf.sv ├── rtl │ └── mux_8x1.sv ├── sim │ └── Makefile ├── src_agent │ ├── mux_wr_agent.sv │ ├── ...
A multiplexer is a device that selects one output from multiple inputs. It is also known as a data selector.We refer to a multiplexer with the terms MUX. A multiplexer is a combinational type of ...