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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [or1ksim/] [peripheral/] [crc32.h] - Rev 855

Go to most recent revision | Compare with Previous | Blame | View Log

#ifndef __CRC32_H
#define __CRC32_H
 
 
/* Calculate CRC of buffer in one go */
unsigned long crc32( const void *buf, unsigned len );
 
/* Calculate incrementally */
void crc32_init( unsigned long *value );
void crc32_feed_bytes( unsigned long *value, const void *buf, unsigned len );
void crc32_close( unsigned long *value );
 
#endif /* ___CRC32_H */
 

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

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