gofeco/support
0
1<h3 id='___set_error_out'>set_error_out</h3>2<pre>Set error out setting3<b>Usage:</b> set_error_out($value);4$value: 1, Abort the program when APIs have run error, default setting5 0, Ignore the error and continue the program6 7<b>Examples:</b>8 9# Program continues when there is error in change_pin10set_error_out(0);11change_pin("nonexisting_instance/A", "1'b0"); # It will continue, even though nonexisting_instance is not in the database12 13</pre>