openMSX
CRC16.cc
Go to the documentation of this file.
1 #include "CRC16.hh"
2 
3 namespace openmsx {
4 
5 // Accelerator table to compute the CRC (upto) 64 bits at a time
6 // (total table size is 4kB)
7 constexpr CRC16Lut CRC16::tab;
8 
9 } // namespace openmsx
Thanks to enen for testing this on a real cartridge:
Definition: Autofire.cc:5