mirror of
https://github.com/aolofsson/oh.git
synced 2025-01-17 20:02:53 +08:00
27 lines
546 B
Coq
27 lines
546 B
Coq
|
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
|
||
|
|
||
|
|