CoolFace
Apppublic

gofeco/support

sourceHugging Faceapache-2.0updated 2y agoView on Hugging Face
0likes
api.set_define.txt21 linesDownload Raw Back to src_en
1<h3 id='___set_define'>set_define</h3>2<pre>Set define (LLM: define variable)3<b>Usage:</b> set_define($define, $value, @options);4@options:5    -imp: The define is for Implementation only6    -ref: The define is for Reference only7$define: The define item8$value: The value, optional9 10<b>Examples:</b>11 12#1. Set define SYNTHESIS for both netlists13set_define("SYNTHESIS");14 15#2. Set define NO_DFT_LOGIC for Reference only16set_define("NO_DFT_LOGIC", "-ref");17 18#3. Set define SIMULATION to 019set_define("SIMULATION", 0);20 21</pre>