1
0
mirror of https://github.com/aolofsson/oh.git synced 2025-01-30 02:32:53 +08:00
oh/common/hdl/oh_crc.v

23 lines
463 B
Coq
Raw Normal View History

2015-12-17 13:50:59 -05:00
module oh_crc (/*AUTOARG*/
// Outputs
out,
// Inputs
clk, nreset, en, in
);
//###############################################################
//# Interface
//###############################################################
parameter DW = 64;
parameter TYPE = "CRC1";
input clk;
input nreset;
input en;
input [DW-1:0] in;
output [DW-1:0] out,
endmodule // oh_crc