coriolis/stratus1/doc/dpgen/latex/dpgen/node11.html

159 lines
4.6 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>DpgenNor4</TITLE>
<META NAME="description" CONTENT="DpgenNor4">
<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="node12.html">
<LINK REL="previous" HREF="node10.html">
<LINK REL="up" HREF="dpgen.html">
<LINK REL="next" HREF="node12.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="node10.html">DpgenNor3</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="node12.html">DpgenOr2</A></td>
</tr></table>
<hr>
<br>
</DIV>
<!--End of Navigation Panel-->
<H1><A NAME="SECTION000110000000000000000">
DpgenNor4</A>
</H1>
<UL>
<LI><SPAN CLASS="textbf">Name</SPAN> : DpgenNor4 - Nor4 Macro-Generator
</LI>
<LI><SPAN CLASS="textbf">Synopsys</SPAN> :
<PRE>
Generate ( 'DpgenNor4', modelname
, param = { 'nbit' : n
, 'drive' : d
, 'physical' : True
, 'behavioral' : True
}
)
</PRE>
</LI>
<LI><SPAN CLASS="textbf">Description</SPAN> : Generates a <code>n</code> bits four inputs NOR 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">i1</SPAN> : input (<code>n</code> bits)
</LI>
<LI><SPAN CLASS="textbf">i2</SPAN> : input (<code>n</code> bits)
</LI>
<LI><SPAN CLASS="textbf">i3</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 or 4
</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 &lt;= not ( i0 or i1 or i2 or i3 )
</PRE>
</LI>
<LI><SPAN CLASS="textbf">Example</SPAN> :
<PRE>
from stratus import *
class inst_nor4 ( Model ) :
def Interface ( self ) :
self.in1 = SignalIn ( "in1", 15 )
self.in2 = SignalIn ( "in2", 15 )
self.in3 = SignalIn ( "in3", 15 )
self.in4 = SignalIn ( "in4", 15 )
self.out = SignalOut ( "o", 15 )
self.vdd = VddIn ( "vdd" )
self.vss = VssIn ( "vss" )
def Netlist ( self ) :
Generate ( 'DpgenNor4', 'nor4_15'
, param = { 'nbit' : 15
, 'physical' : True
}
)
self.I = Inst ( 'nor4_15', 'inst'
, map = { 'i0' : self.in1
, 'i1' : self.in2
, 'i2' : self.in3
, 'i3' : self.in4
, 'nq' : self.out
, '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>