分支自 DSP/ADSP21569/DSP-21569

graydon
2024-02-28 420778fcee054257d540cf24fbf1b1e3f9fc0d9f
1
2
3
4
5
6
7
8
9
10
#ifndef _CRC_CPP_H__
#define _CRC_CPP_H__
 
#include "typedefs.h"
 
class CRC {
public:
    static u32 crc32(const u8* buf, u32 size);
};
#endif // !_CRC_CPP_H__