![]() |
Network Wizard for VHDL Test Benches
|
Functions | |
std_logic_vector | f_gen_crc ( poly: in std_logic_vector data: in t_slv_arr init: in std_logic_vector msb_first: in boolean C_MSB_FIRST ) |
Calculate CRC. | |
std_logic_vector | f_gen_chksum ( data: in t_slv_arr chksum_width: in positive use_carry: in boolean True ) |
Calculate sum-of-words checksum. |
|
Function |
Calculate CRC.
poly | CRC polynomial to use (3-bit or longer) |
data | Data array |
init | CRC init value (same width as poly) |
msb_first | Extract most significant bits first if True (default), least significant bits if False |
Calculate CRC checksum of data array.
Example use
|
Function |
Calculate sum-of-words checksum.
data | Data array |
chksum_width | Checksum width |
use_carry | Add carry to checksum (default True) |
Calculate sum-of-words checksum of data array. The data array should have the same width as the checksum, which is accomplished with e.g. f_repack().
Example use