1
0
mirror of https://github.com/aolofsson/oh.git synced 2025-01-30 02:32:53 +08:00
oh/elink/hdl/etx_mux.v

23 lines
412 B
Coq
Raw Normal View History

module etx_mux (/*AUTOARG*/
// Outputs
mi_dout,
// Inputs
mi_clk, mi_en, mi_addr, mi_tx_emmu_dout, mi_tx_cfg_dout
);
parameter AW = 32;
parameter DW = 32;
//Needed for selecting data
input mi_clk;
input mi_en;
input [19:0] mi_addr;
input [DW-1:0] mi_tx_emmu_dout;
input [DW-1:0] mi_tx_cfg_dout;
output [DW-1:0] mi_dout;
endmodule // etx_mux