FDI stream images are now also handled by the 86F handler; Both floppy drives' motors now spin separately; Added Plantronics ColorPlus emulation per patch from PCem forum; Applied all mainline PCem commits; Fixed several bugs.
21 lines
680 B
C
21 lines
680 B
C
#ifndef CRC64SPEED_H
|
|
#define CRC64SPEED_H
|
|
#include "crcspeed.h"
|
|
#include "stdbool.h"
|
|
|
|
/* Does not require init */
|
|
uint64_t crc64(uint64_t crc, const void *data, const uint64_t len);
|
|
void crc64speed_cache_table(void);
|
|
|
|
/* All other crc functions here require _init() before usage. */
|
|
bool crc64speed_init(void);
|
|
uint64_t crc64_lookup(uint64_t crc, const void *in_data, const uint64_t len);
|
|
uint64_t crc64speed(uint64_t crc, const void *s, const uint64_t l);
|
|
|
|
bool crc64speed_init_big(void);
|
|
uint64_t crc64speed_big(uint64_t crc, const void *s, const uint64_t l);
|
|
|
|
bool crc64speed_init_native(void);
|
|
uint64_t crc64speed_native(uint64_t crc, const void *s, const uint64_t l);
|
|
#endif
|