forked from aolofsson/oh
-
Notifications
You must be signed in to change notification settings - Fork 1
/
oh_bin2gray.v
30 lines (24 loc) · 973 Bytes
/
oh_bin2gray.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
//#############################################################################
//# Function: Binary to gray encoder #
//#############################################################################
//# Author: Andreas Olofsson #
//# License: MIT (see LICENSE file in OH! repository) #
//#############################################################################
module oh_bin2gray #(parameter DW = 32 // width of data inputs
)
(
input [DW-1:0] in, //binary encoded input
output [DW-1:0] out //gray encoded output
);
reg [DW-1:0] gray;
wire [DW-1:0] bin;
integer i;
assign bin[DW-1:0] = in[DW-1:0];
assign out[DW-1:0] = gray[DW-1:0];
always @*
begin
gray[DW-1] = bin[DW-1];
for (i=0; i<(DW-1); i=i+1)
gray[i] = bin[i] ^ bin[i+1];
end
endmodule // oh_bin2gray