1
0
mirror of https://github.com/aolofsson/oh.git synced 2025-01-30 02:32:53 +08:00
oh/stdlib/rtl/oh_bin2onehot.v
Andreas.Olofsson e631bfe3f1 Fixing naming error
-The directory should contain rtl only.
-HDL is too broad a term
2022-06-22 11:04:54 -04:00

22 lines
851 B
Verilog

//#############################################################################
//# Function: Binary to one hot encoder #
//#############################################################################
//# Author: Andreas Olofsson #
//# License: MIT (see LICENSE file in OH! repository) #
//#############################################################################
module oh_bin2onehot
#(parameter N = 2, // output vector width
parameter NB = $clog2(N) // binary encoded input
)
(
input [NB-1:0] in, // unsigned binary input
output [N-1:0] out // one hot output vector
);
genvar i;
for(i=0;i<N;i=i+1) begin: gen_onehot
assign out[i] = (in[NB-1:0] == i);
end
endmodule // oh_bin2onehot