support / src_en /api.create_reset.txt
gofeco's picture
Upload 100 files
fe683c0 verified
raw
history blame
No virus
431 Bytes
<h3 id='___create_reset'>create_reset</h3>
<pre>Create reset for the design
<b>Usage:</b> create_reset($reset_name, $active_level);
$reset_name: Reset name, input port name or black box instance output pin
$active_level: The level that the reset is active
<b>Examples:</b>
#1. Create reset on PIN_RESETN, active low
create_reset("PIN_RESETN", 0);
#2. Create reset on PIN_RESET, active high
create_reset("PIN_RESET", 1);
</pre>