1
0
mirror of https://github.com/aolofsson/oh.git synced 2025-01-17 20:02:53 +08:00
oh/common/hdl/oh_bin2gray.v
2015-12-17 13:50:59 -05:00

27 lines
546 B
Verilog

module oh_bin2gray (/*AUTOARG*/
// Outputs
out,
// Inputs
a
);
//###############################################################
//# Interface
//###############################################################
parameter DW = 64;
input [DW-1:0] a; //binary input
output [DW-1:0] out; //gray-encoded output
//###############################################################
//# BODY
//###############################################################
endmodule // oh_bin2gray