forked from aolofsson/oh
-
Notifications
You must be signed in to change notification settings - Fork 1
/
oh_gray2bin.v
36 lines (27 loc) · 1.01 KB
/
oh_gray2bin.v
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//#############################################################################
//# Function: Gray to binary encoder #
//#############################################################################
//# Author: Andreas Olofsson #
//# License: MIT (see LICENSE file in OH! repository) #
//#############################################################################
module oh_gray2bin #(parameter DW = 32) // width of data inputs
(
input [DW-1:0] in, //gray encoded input
output [DW-1:0] out //binary encoded output
);
reg [DW-1:0] bin;
wire [DW-1:0] gray;
integer i,j;
assign gray[DW-1:0] = in[DW-1:0];
assign out[DW-1:0] = bin[DW-1:0];
always @*
begin
bin[DW-1] = gray[DW-1];
for (i=0; i<(DW-1); i=i+1)
begin
bin[i] = 1'b0;
for (j=i; j<DW; j=j+1)
bin[i] = bin[i] ^ gray [j];
end
end
endmodule // oh_gray2bin