* ./stratus:

- Change: Busses are now created in "downto" order instead of "to".
This commit is contained in:
Jean-Paul Chaput 2012-11-16 12:56:08 +00:00
parent 8d7ad312c9
commit da88363881
3 changed files with 5 additions and 3 deletions

View File

@ -6,5 +6,5 @@
\item{A \verb-Stimuli- method permits to generate stimuli for simulation.}
\item{Thanks to the \verb-Stimuli- method, a testbench can now automatically be generated either in Alliance PAT format or standard VHDL.}
\item{The \verb-Simul- method of the class \verb-Model- permits to simulate either with the Alliance's simulator \verb-asimut- or a standard VHDL simulator (\verb-ghdl-).}
\begin{end}
\end{itemize}

View File

@ -467,7 +467,8 @@ class Model :
if EDITOR:
EDITOR.setCell ( self._hur_cell )
EDITOR.fit ()
Breakpoint.stop ( stopLevel, message )
if stopLevel > 0:
Breakpoint.stop ( stopLevel, message )
##### Save : in order to create the output files #####
def Save ( self, views = 0, fileName = None ) :

View File

@ -919,7 +919,8 @@ class net :
if self._arity == 1 :
self.hur_net ( self._name, 0 )
else :
for i in range ( self._ind, self._arity+self._ind ) : self.hur_net ( self._name + "(" + str(i) + ")", i )
for i in range ( self._ind+self._arity, self._ind, -1 ):
self.hur_net ( '%s(%d)' % (self._name,i), i )
##### hur_net one by one #####
def hur_net ( self, name, ind ) :