![]() |
Network Wizard for VHDL Test Benches
|
Functions | |
t_slv_arr | f_bitflip ( data: in t_slv_arr ) |
Reverse bit order in each data word. | |
std_logic_vector | f_bitflip ( data: in std_logic_vector ) |
Reverse bit order in data word. | |
t_slv_arr | f_concat ( data1: in t_slv_arr , data2: in t_slv_arr ) |
Concatenate two arrays (of same data width) | |
t_slv_arr | f_repack ( data: in t_slv_arr new_width: in natural msb_first: in boolean pad_after: in boolean pad_value: in std_logic_vector get_length: in boolean false ) |
t_slv_arr | f_repack ( data: in t_slv_arr new_width: in natural msb_first: in boolean pad_after: in boolean pad_value: in std_logic_vector ) |
Repack array to new word size. | |
t_slv_arr | f_repack ( data: in t_slv_arr new_width: in natural msb_first: in boolean C_MSB_FIRST ) |
natural | f_repack_len ( data: in t_slv_arr new_width: in natural msb_first: in boolean C_MSB_FIRST ) |
Return length of repacked array. | |
t_slv_arr | f_reverse ( data: in t_slv_arr ) |
Reverse data array. | |
integer | f_search ( data: in t_slv_arr , token: in t_slv_arr ) |
Find sub-array in data array. | |
t_slv_arr | f_stack ( data_high: in t_slv_arr , data_low: in t_slv_arr ) |
Stack data words from two arrays. | |
t_slv_arr | f_swap_endian ( data: in t_slv_arr ) |
Swap endianness of array. | |
std_logic_vector | f_swap_endian ( data: in std_logic_vector ) |
Swap endianness of vector. | |
std_logic_vector | f_str_2_slv ( value: in string ) |
Convert hex string to slv. | |
t_unsigned_arr | f_to_unsigned_arr ( data: in t_slv_arr ) |
Convert slv array to unsigned array. | |
t_slv_arr | f_to_slv_arr ( data: in t_unsigned_arr ) |
Convert unsigned array to slv array. | |
t_slv_arr | f_str_2_slv_arr ( str: in string ) |
Convert string to slv array. | |
string | f_slv_arr_2_str ( data: in t_slv_arr ) |
Convert slv array to string. |
Procedures | |
msg( constant msg_txt: in string ) | |
Print message in simulation log. |
|
Function |
Reverse bit order in each data word.
data | Input data array |
Example use
|
Function |
Reverse bit order in data word.
data | Input data |
Example use
|
Function |
Concatenate two arrays (of same data width)
data1 | First data array |
data2 | Second data array |
Example use
|
Function |
Repack array to new word size.
data | Input data array |
new_width | Target data width |
msb_first | Insert/extract most significant bits first if True, least significant bits if False |
pad_after | Put padding after if True, before if False |
pad_value | Value to pad with (same word size as data) |
Array will be repacked to wider or narrower data words. The only limit is that there must be an integer relationship between the input data word size and the new data width. This limit is circumvented by first repacking to 1bit, then to target width. When increasing the data width, padding will be added before or after as required with a user-defined pad word.
Example use
|
Function |
data | Input data array |
new_width | Target data width |
msb_first | Insert/extract most significant bits first if True (default), least significant bits if False |
This is an overload of f_repack with the following parameters set:
pad_after: True pad_value: (others => '0')
Example use
|
Function |
Return length of repacked array.
data | Input data array |
new_width | Target data width |
Return the length of the array when repacked to new_width.
Example use
|
Function |
Reverse data array.
data | Input data array |
Example use
|
Function |
Find sub-array in data array.
data | Input data array |
token | Sub-array to search for |
Search for a token in a data array. The token and data array must have the same data width. If the token is not found, -1 is returned.
Example use
|
Function |
Stack data words from two arrays.
data_high | Input MSB data array |
data_low | Input LSB data array |
Stack two data arrays, word by word. If one array is longer than the other, it will be cropped to match the length of the shorter one.
Example use
|
Function |
Swap endianness of array.
data | Input data array |
This function will swap endianness of each dataword in the array. The width of the input data must be an integer factor of 8.
Example use
|
Function |
Swap endianness of vector.
data | Input data vector |
This function will swap endianness of the dataword. The width of the input data word must be an integer factor of 8.
Example use
|
Function |
Convert hex string to slv.
value | Hex number in string format |
This function converts a hex number in string format to slv.
Example use
|
Function |
Convert slv array to unsigned array.
data | slv array |
This function converts each word in the data array from std_logic_vector to unsigned type.
Example use
|
Function |
Convert unsigned array to slv array.
data | unsigned array |
This function converts each word in the data array from unsigned to std_logic_vector type.
Example use
|
Function |
Convert string to slv array.
str | String |
This function converts a string to array of std_logic_vector(7 downto 0).
Example use
|
Function |
Convert slv array to string.
data | 8bit data array |
This function converts an 8bit slv array to string.
Example use
|
Procedure |
Print message in simulation log.
msg | Message to print |
The input string is printed with a timestamp.
Example use