mirror of
https://github.com/aolofsson/oh.git
synced 2025-01-30 02:32:53 +08:00
e631bfe3f1
-The directory should contain rtl only. -HDL is too broad a term
22 lines
851 B
Verilog
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
|