File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ def find_all_files(directory, endings=None):
3030
3131setup (
3232 name = 'vunit_hdl' ,
33- version = '0.51.2 ' ,
33+ version = '0.51.3 ' ,
3434 packages = ['vunit' ,
3535 'vunit.com' ,
3636 'vunit.test' ,
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ use work.string_ops.all;
1818
1919package body check_pkg is
2020 type boolean_vector is array (natural range <> ) of boolean ;
21- function " srl " (
21+ function logical_right_shift (
2222 constant arg : boolean_vector ;
2323 constant count : natural )
2424 return boolean_vector is
@@ -28,7 +28,7 @@ package body check_pkg is
2828 ret_val(count to ret_val'right ) := temp(0 to ret_val'right - count);
2929
3030 return ret_val;
31- end function " srl " ;
31+ end function logical_right_shift ;
3232 constant max_supported_num_of_bits_in_integer_implementation : natural := 256 ;
3333
3434 function failed_expectation_msg (
@@ -1350,7 +1350,7 @@ package body check_pkg is
13501350 else
13511351 expected_events(0 ) := tracks(0 );
13521352 end if ;
1353- expected_events := expected_events srl 1 ;
1353+ expected_events := logical_right_shift( expected_events, 1 ) ;
13541354 end procedure update_expectations_on_events_in_next_cycle;
13551355
13561356 procedure verify_expected_events (
You can’t perform that action at this time.
0 commit comments