Welcome to mirror list, hosted at ThFree Co, Russian Federation.

crc.h - github.com/ClusterM/famicom-dumper.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/crc.h
blob: c786e85dd0aa77de239eda485144c5b3960c00c7 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef _CRC_H_
#define _CRC_H_

extern const uint16_t crc8_table[];
extern const uint16_t crc16_table[];

uint8_t calc_crc8(uint8_t old_crc, uint8_t inbyte);
uint16_t calc_crc16(uint16_t old_crc, uint8_t inbyte);

#endif