CoolFace
Apppublic

gofeco/support

sourceHugging Faceapache-2.0updated 2y agoView on Hugging Face
0likes
api.set_phase_inv.txt15 linesDownload Raw Back to src_en
1<h3 id='___set_phase_inv'>set_phase_inv</h3>2<pre>ECO setting. Set flops invert phase in the Reference and Implementation Netlists3<b>Usage:</b> set_phase_inv($flop1, $flop2 ...);4$flop1, $flop2: Flop instance list in full path5 6<b>Examples:</b>7 8#1. Set flop instance u_ip/u_control/a_reg to have invert phase9set_top('top_module');10set_phase_inv('u_ip/u_control/a_reg');11 12#2. Set flop instances u_ip/u_control/a_reg and u_ip/u_control_b/b_reg to have invert phase13set_top('top_module');14set_phase_inv('u_ip/u_control/a_reg', 'u_ip/u_control_b/b_reg');15</pre>