349
edits
Line 124: | Line 124: | ||
==== Build the AND gate circuit structure parsing an IFF netlist ==== | ==== Build the AND gate circuit structure parsing an IFF netlist ==== | ||
To parse an IFF format netlist of the CMOS AND gate we can use the following command | |||
{{Code|Load the AND circuit structure parsing an IFF netlist |<syntaxhighlight lang="octave" style="font-size:13px"> | {{Code|Load the AND circuit structure parsing an IFF netlist |<syntaxhighlight lang="octave" style="font-size:13px"> | ||
Line 129: | Line 131: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
}} | }} | ||
The IFF netlist consists of the .cir file named "and.cir" shown below | |||
{{Code|IFF netlist for the AND gate (.cir file)|<syntaxhighlight lang="text" style="font-size:13px"> | {{Code|IFF netlist for the AND gate (.cir file)|<syntaxhighlight lang="text" style="font-size:13px"> | ||
Line 176: | Line 180: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
}} | }} | ||
and of the .nms file named "and.nms shown below | |||
{{Code|IFF netlist for the AND gate (.nms file)|<syntaxhighlight lang="text" style="font-size:13px"> | {{Code|IFF netlist for the AND gate (.nms file)|<syntaxhighlight lang="text" style="font-size:13px"> | ||
Line 188: | Line 194: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
}} | }} | ||
==== Build the AND gate circuit structure parsing a .spc file ==== | ==== Build the AND gate circuit structure parsing a .spc file ==== |
edits