OpenCores
URL https://opencores.org/ocsvn/sdcard_mass_storage_controller/sdcard_mass_storage_controller/trunk

Subversion Repositories sdcard_mass_storage_controller

[/] [sdcard_mass_storage_controller/] [trunk/] [rtl/] [sdc_fifo/] [verilog/] [sd_crc_7.v] - Diff between revs 10 and 27

Go to most recent revision | Show entire file | Details | Blame | View Log

Rev 10 Rev 27
Line 1... Line 1...
 
module CRC_7(BITVAL, Enable, CLK, RST, CRC);
 
   input        BITVAL;// Next input bit
 
   input Enable;
 
   input        CLK;                           // Current bit valid (Clock)
 
   input        RST;                             // Init CRC value
 
   output [6:0] CRC;                               // Current output CRC value
 
 
 
   reg    [6:0] CRC;
 
                     // We need output registers
 
   wire         inv;
 
 
 
   assign inv = BITVAL ^ CRC[6];                   // XOR required?
 
 
 
 
 
    always @(posedge CLK or posedge RST) begin
 
                if (RST) begin
 
                        CRC = 0;
 
 
 
        end
 
                else begin
 
                        if (Enable==1) begin
 
                                CRC[6] = CRC[5];
 
                                CRC[5] = CRC[4];
 
                                CRC[4] = CRC[3];
 
                                CRC[3] = CRC[2] ^ inv;
 
                                CRC[2] = CRC[1];
 
                                CRC[1] = CRC[0];
 
                                CRC[0] = inv;
 
                        end
 
                end
 
     end
 
 
 
endmodule
 
 
 
 
 No newline at end of file
 No newline at end of file

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.