146 lines
4.1 KiB
HTML
146 lines
4.1 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|
|
|
<!--Converted with LaTeX2HTML 2012 (1.2)
|
|
original version by: Nikos Drakos, CBLU, University of Leeds
|
|
* revised and updated by: Marcus Hennecke, Ross Moore, Herb Swan
|
|
* with significant contributions from:
|
|
Jens Lippmann, Marek Rouchal, Martin Wilck and others -->
|
|
<HTML>
|
|
<HEAD>
|
|
<TITLE>DpgenInv</TITLE>
|
|
<META NAME="description" CONTENT="DpgenInv">
|
|
<META NAME="keywords" CONTENT="dpgen">
|
|
<META NAME="resource-type" CONTENT="document">
|
|
<META NAME="distribution" CONTENT="global">
|
|
|
|
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">
|
|
<META NAME="Generator" CONTENT="LaTeX2HTML v2012">
|
|
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">
|
|
|
|
<LINK REL="STYLESHEET" HREF="SoC.css">
|
|
|
|
<LINK REL="next" HREF="node2.html">
|
|
<LINK REL="previous" HREF="dpgen.html">
|
|
<LINK REL="up" HREF="dpgen.html">
|
|
<LINK REL="next" HREF="node2.html">
|
|
</HEAD>
|
|
|
|
<BODY >
|
|
|
|
<DIV CLASS="navigation">
|
|
<table align="center" width="100%" cellpadding="0" cellspacing="2">
|
|
<tr><td class="navigation" align="left" width="33%"><B>Previous</B></td>
|
|
<td class="navigation" align="center" width="34%"><B>Up</B></td>
|
|
<td class="navigation" align="right" width="33%"><B>Next</B></td>
|
|
|
|
</tr><tr>
|
|
<td class="navigation" align="left" width="33%"><A HREF="dpgen.html">Dpgen generators User's Manual</A></td>
|
|
<td class="navigation" align="center" width="34%"><A HREF="dpgen.html">Dpgen generators User's Manual</A></td>
|
|
<td class="navigation" align="right" width="33%"><A HREF="node2.html">DpgenBuff</A></td>
|
|
|
|
</tr></table>
|
|
<hr>
|
|
<br>
|
|
</DIV>
|
|
<!--End of Navigation Panel-->
|
|
|
|
<H1><A NAME="SECTION00010000000000000000">
|
|
DpgenInv</A>
|
|
</H1>
|
|
|
|
<UL>
|
|
<LI><SPAN CLASS="textbf">Name</SPAN> : DpgenInv - Inverter Macro-Generator
|
|
</LI>
|
|
<LI><SPAN CLASS="textbf">Synopsys</SPAN> :
|
|
<PRE>
|
|
Generate ( 'DpgenInv', modelname
|
|
, param = { 'nbit' : n
|
|
, 'drive' : d
|
|
, 'physical' : True
|
|
, 'behavioral' : True
|
|
}
|
|
)
|
|
</PRE>
|
|
</LI>
|
|
<LI><SPAN CLASS="textbf">Description</SPAN> : Generates a <code>n</code> bits inverter with an output power of <code>d</code> named <code>modelname</code>.
|
|
</LI>
|
|
<LI><SPAN CLASS="textbf">Terminal Names</SPAN> :
|
|
|
|
<UL>
|
|
<LI><SPAN CLASS="textbf">i0</SPAN> : input (<code>n</code> bits)
|
|
</LI>
|
|
<LI><SPAN CLASS="textbf">nq</SPAN> : output (<code>n</code> bits)
|
|
</LI>
|
|
<LI><SPAN CLASS="textbf">vdd</SPAN> : power
|
|
</LI>
|
|
<LI><SPAN CLASS="textbf">vss</SPAN> : ground
|
|
|
|
</LI>
|
|
</UL>
|
|
</LI>
|
|
<LI><SPAN CLASS="textbf">Parameters</SPAN> : Parameters are given in the map <code>param</code>.
|
|
|
|
<UL>
|
|
<LI><SPAN CLASS="textbf">nbit</SPAN> (mandatory) : Defines the size of the generator
|
|
</LI>
|
|
<LI><SPAN CLASS="textbf">drive</SPAN> (optional) : Defines the output power of the gates
|
|
|
|
<UL>
|
|
<LI>Valid drive are : 1, 2, 4 or 8
|
|
</LI>
|
|
<LI>If this parameter is not defined, it's value is the smallest one permitted
|
|
|
|
</LI>
|
|
</UL>
|
|
</LI>
|
|
<LI><SPAN CLASS="textbf">physical</SPAN> (optional, default value : False) : In order to generate a layout
|
|
</LI>
|
|
<LI><SPAN CLASS="textbf">behavioral</SPAN> (optional, default value : False) : In order to generate a behavior
|
|
|
|
</LI>
|
|
</UL>
|
|
</LI>
|
|
<LI><SPAN CLASS="textbf">Behavior</SPAN> :
|
|
<PRE>
|
|
nq <= not ( i0 )
|
|
</PRE>
|
|
</LI>
|
|
<LI><SPAN CLASS="textbf">Example</SPAN> :
|
|
<PRE>
|
|
from stratus import *
|
|
|
|
class inst_inv ( Model ) :
|
|
|
|
def Interface ( self ) :
|
|
self.i = SignalIn ( "i", 54 )
|
|
self.o = SignalOut ( "o", 54 )
|
|
|
|
self.vdd = VddIn ( "vdd" )
|
|
self.vss = VssIn ( "vss" )
|
|
|
|
def Netlist ( self ) :
|
|
Generate ( 'DpgenInv', 'inv_54'
|
|
, param = { 'nbit' : 54
|
|
, 'physical' : True
|
|
}
|
|
)
|
|
self.I = Inst ( 'inv_54', 'inst'
|
|
, map = { 'i0' : self.i
|
|
, 'nq' : self.o
|
|
, 'vdd' : self.vdd
|
|
, 'vss' : self.vss
|
|
}
|
|
)
|
|
|
|
def Layout ( self ) :
|
|
Place ( self.I, NOSYM, Ref(0, 0) )
|
|
</PRE>
|
|
</LI>
|
|
</UL>
|
|
<BR> <HR>
|
|
<ADDRESS>
|
|
Sophie B<small>ELLOEIL</small><br>20051116.1
|
|
</ADDRESS>
|
|
</BODY>
|
|
</HTML>
|