mirror of
https://github.com/aolofsson/oh.git
synced 2025-02-07 06:44:09 +08:00
-Better to fix to avoid issues across different synthesis platform (even if standard would allow if for verilog2005)
34 lines
1.0 KiB
Verilog
34 lines
1.0 KiB
Verilog
//#############################################################################
|
|
//# Function: "ONE HOT" N:1 MUX #
|
|
//#############################################################################
|
|
//# Author: Andreas Olofsson #
|
|
//# License: MIT (see LICENSE file in OH! repository) #
|
|
//#############################################################################
|
|
|
|
module oh_mux #( parameter DW = 1, // width of data inputs
|
|
parameter N = 1 // number of inputs
|
|
)
|
|
(
|
|
input [N-1:0] sel, // select vector
|
|
input [N*DW-1:0] in, // concatenated input {..,in1[DW-1:0],in0[DW-1:0]
|
|
output [DW-1:0] out // output
|
|
);
|
|
|
|
//local variable
|
|
reg [DW-1:0] mux;
|
|
|
|
integer i;
|
|
always @*
|
|
begin
|
|
mux[DW-1:0] = 'b0;
|
|
for(i=0;i<N;i=i+1)
|
|
mux[DW-1:0] = mux[DW-1:0] | {(DW){sel[i]}} & in[((i+1)*DW-1)-:DW];
|
|
end
|
|
|
|
assign out[DW-1:0] = mux;
|
|
|
|
endmodule // oh_mux
|
|
|
|
|
|
|