![]() |
Network Wizard for VHDL Test Benches
|
Functions | ||
integer | f_calc_num_bits ( data: in t_slv_arr ) | |
integer | f_calc_num_bits_dec ( data_len: in integer ) | |
std_logic_vector | f_calc_hamming_bits ( data: in std_logic_vector parity_bits: in integer extra_parity: in boolean false ) | |
std_logic | f_calc_parity ( data: in std_logic_vector , even_parity: in boolean true ) | |
Calculate parity. | ||
t_slv_arr | f_calc_parity ( data: in t_slv_arr , even_parity: in boolean true ) | |
Calculate parity. | ||
t_slv_arr_ptr | f_hamming_enc ( data: in t_slv_arr , extra_parity: in boolean false ) | [ impure ] |
Encode data array. | ||
t_slv_arr | f_hamming_enc ( data: in t_slv_arr , extra_parity: in boolean false ) | [ impure ] |
Encode data array. | ||
natural | f_hamming_enc_width ( data: in t_slv_arr , extra_parity: in boolean false ) | |
Get encoded data width. | ||
t_slv_arr_ptr | f_hamming_dec ( data: in t_slv_arr , extra_parity: in boolean false ) | [ impure ] |
Decode data array. | ||
t_slv_arr | f_hamming_dec ( data: in t_slv_arr , extra_parity: in boolean false ) | [ impure ] |
Decode data array. | ||
natural | f_hamming_dec_width ( data: in t_slv_arr , extra_parity: in boolean false ) | |
Get decoded data width. |
|
Function |
Calculate parity.
data | Data vector |
even_parity | True = Use even parity (default), false = use odd parity |
Calculate parity (even or odd) of a logic vector.
Example use
|
Function |
Calculate parity.
data | Data array |
even_parity | True = Use even parity (default), false = use odd parity |
Calculate parity (even or odd) of a logic vector array. Returns a one-bit array of parity.
Example use
|
Function |
Encode data array.
data | Data array |
extra_parity | Add extra parity bit (default=false) |
Encode data with a Hamming encoder. The returned pointer should be deallocated after use to avoid memory leaks. The encoded data is non-systematic (data and parity bits mixed).
Example use
|
Function |
Encode data array.
data | Data array |
extra_parity | Add extra parity bit (default=false) |
Encode data with a Hamming encoder. Same as above, but returns a data array instead of pointer.
Example use
|
Function |
Get encoded data width.
data | Data array |
extra_parity | Add extra parity bit (default=false) |
Get encoded data width. The encoded data width is the sum of data bits in input data and the number of parity bits required.
Example use
|
Function |
Decode data array.
data | Encoded data array |
extra_parity | Has extra parity bit (default=false) |
Decode data with a Hamming decoder. The returned pointer should be deallocated after use to avoid memory leaks. If input data does not have extra parity bit, single errors will be corrected, and one extra status bit is added to decoded data to indicate positions where correction has been made. If input data have extra parity bit, two errors can be detected and one error corrected. This is indicated with two status bits, the first indicates single error correction, and the last double error detection.
Example use
|
Function |
Decode data array.
data | Encoded data array |
extra_parity | Has extra parity bit (default=false) |
Decode data with a Hamming decoder. Same as above, but returns a data array instead of pointer.
Example use
|
Function |
Get decoded data width.
data | Encoded data array |
extra_parity | Use extra parity bit (default=false) |
Get decoded data width, which is the original data width plus one or two status bits.
Example use