⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 crctab.h

📁 国产CPU-龙芯(loongson)BIOS源代码
💻 H
字号:
/* * updcrc macro derived from article Copyright (C) 1986 Stephen Satchell.  *  NOTE: First srgument must be in range 0 to 255. *        Second argument is referenced twice. *  * Programmers may incorporate any or all code into their programs,  * giving proper credit within the source. Publication of the  * source routines is permitted so long as proper credit is given  * to Stephen Satchell, Satchell Evaluations * * wow ! a whole macro ! lets copyright it..... */extern unsigned short int  crc16tab[0x100];extern unsigned long crc32tab[0x100];#define UPDCRC16(cp, crc) (crc16tab[((crc >> 8) & 255)] ^ (crc << 8) ^ cp)#define UPDCRC32(b, c)    (crc32tab[((int)c ^ b) & 0xff] ^ ((c >> 8) & 0x00FFFFFF))

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -