1
0
mirror of https://github.com/myhdl/myhdl.git synced 2025-01-24 21:52:56 +08:00

version / revision

This commit is contained in:
jand 2003-06-24 15:29:26 +00:00
parent 1e177de237
commit 9dd45018a6
23 changed files with 26 additions and 24 deletions

View File

@ -20,7 +20,7 @@
""" Module that provides the Cosimulation class """ """ Module that provides the Cosimulation class """
__author__ = "Jan Decaluwe <jan@jandecaluwe.com>" __author__ = "Jan Decaluwe <jan@jandecaluwe.com>"
__version__ = "$Revision$" __revision__ = "$Revision$"
__date__ = "$Date$" __date__ = "$Date$"
from __future__ import generators from __future__ import generators

View File

@ -27,7 +27,7 @@ negedge -- callable to model a falling edge on a signal in a yield statement
""" """
__author__ = "Jan Decaluwe <jan@jandecaluwe.com>" __author__ = "Jan Decaluwe <jan@jandecaluwe.com>"
__version__ = "$Revision$" __revision__ = "$Revision$"
__date__ = "$Date$" __date__ = "$Date$"
from __future__ import generators from __future__ import generators

View File

@ -18,7 +18,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
__author__ = "Jan Decaluwe <jan@jandecaluwe.com>" __author__ = "Jan Decaluwe <jan@jandecaluwe.com>"
__version__ = "$Revision$" __revision__ = "$Revision$"
__date__ = "$Date$" __date__ = "$Date$"
Specification for the Signal class Specification for the Signal class

View File

@ -20,7 +20,7 @@
""" Module that provides the Simulation class """ """ Module that provides the Simulation class """
__author__ = "Jan Decaluwe <jan@jandecaluwe.com>" __author__ = "Jan Decaluwe <jan@jandecaluwe.com>"
__version__ = "$Revision$" __revision__ = "$Revision$"
__date__ = "$Date$" __date__ = "$Date$"
from __future__ import generators from __future__ import generators

View File

@ -18,7 +18,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
__author__ = "Jan Decaluwe <jan@jandecaluwe.com>" __author__ = "Jan Decaluwe <jan@jandecaluwe.com>"
__version__ = "$Revision$" __revision__ = "$Revision$"
__date__ = "$Date$" __date__ = "$Date$"
Specification for the Simulation class Specification for the Simulation class

View File

@ -20,7 +20,7 @@
""" Module that provides the _Waiter class """ """ Module that provides the _Waiter class """
__author__ = "Jan Decaluwe <jan@jandecaluwe.com>" __author__ = "Jan Decaluwe <jan@jandecaluwe.com>"
__version__ = "$Revision$" __revision__ = "$Revision$"
__date__ = "$Date$" __date__ = "$Date$"
from __future__ import generators from __future__ import generators

View File

@ -40,9 +40,11 @@ always_comb -- function that returns an input-sensitive generator
""" """
__author__ = "Jan Decaluwe <jan@jandecaluwe.com>" __author__ = "Jan Decaluwe <jan@jandecaluwe.com>"
__version__ = "$Revision$" __revision__ = "$Revision$"
__date__ = "$Date$" __date__ = "$Date$"
__version__ = "0.3"
# import intbv as a class first; it's used in other classes # import intbv as a class first; it's used in other classes
from intbv import intbv from intbv import intbv
from Simulation import Simulation from Simulation import Simulation

View File

@ -25,7 +25,7 @@ now -- function that returns the current simulation time
""" """
__author__ = "Jan Decaluwe <jan@jandecaluwe.com>" __author__ = "Jan Decaluwe <jan@jandecaluwe.com>"
__version__ = "$Revision$" __revision__ = "$Revision$"
__date__ = "$Date$" __date__ = "$Date$"
_siglist = [] _siglist = []

View File

@ -20,7 +20,7 @@
""" Module with the always_comb function. """ """ Module with the always_comb function. """
__author__ = "Jan Decaluwe <jan@jandecaluwe.com>" __author__ = "Jan Decaluwe <jan@jandecaluwe.com>"
__version__ = "$Revision$" __revision__ = "$Revision$"
__date__ = "$Date$" __date__ = "$Date$"
from __future__ import generators from __future__ import generators
@ -51,7 +51,7 @@ class NrOfArgsError(Error):
""" always_comb argument should be a function without arguments""" """ always_comb argument should be a function without arguments"""
class ScopeError(Error): class ScopeError(Error):
"""always_comb should be called with a local function as argument""" """always_comb argument should be a local function"""
class SignalAsInoutError(Error): class SignalAsInoutError(Error):
"""signal used as inout in always_comb function argument""" """signal used as inout in always_comb function argument"""

View File

@ -20,7 +20,7 @@
""" Module that provides the delay class.""" """ Module that provides the delay class."""
__author__ = "Jan Decaluwe <jan@jandecaluwe.com>" __author__ = "Jan Decaluwe <jan@jandecaluwe.com>"
__version__ = "$Revision$" __revision__ = "$Revision$"
__date__ = "$Date$" __date__ = "$Date$"
_errmsg = "arg of delay constructor should be a natural integeer" _errmsg = "arg of delay constructor should be a natural integeer"

View File

@ -20,7 +20,7 @@
""" Module with the intbv class """ """ Module with the intbv class """
__author__ = "Jan Decaluwe <jan@jandecaluwe.com>" __author__ = "Jan Decaluwe <jan@jandecaluwe.com>"
__version__ = "$Revision$" __revision__ = "$Revision$"
__date__ = "$Date$" __date__ = "$Date$"
import sys import sys

View File

@ -18,7 +18,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
__author__ = "Jan Decaluwe <jan@jandecaluwe.com>" __author__ = "Jan Decaluwe <jan@jandecaluwe.com>"
__version__ = "$Revision$" __revision__ = "$Revision$"
__date__ = "$Date$" __date__ = "$Date$"
Specification for the intbv class Specification for the intbv class

View File

@ -20,7 +20,7 @@
""" Module that provides the Simulation class """ """ Module that provides the Simulation class """
__author__ = "Jan Decaluwe <jan@jandecaluwe.com>" __author__ = "Jan Decaluwe <jan@jandecaluwe.com>"
__version__ = "$Revision$" __revision__ = "$Revision$"
__date__ = "$Date$" __date__ = "$Date$"
from __future__ import generators from __future__ import generators

View File

@ -28,7 +28,7 @@ processes -- function that returns processes in a generator function
""" """
__author__ = "Jan Decaluwe <jan@jandecaluwe.com>" __author__ = "Jan Decaluwe <jan@jandecaluwe.com>"
__version__ = "$Revision$" __revision__ = "$Revision$"
__date__ = "$Date$" __date__ = "$Date$"
import inspect import inspect

View File

@ -20,7 +20,7 @@
""" Module that provides the Simulation class """ """ Module that provides the Simulation class """
__author__ = "Jan Decaluwe <jan@jandecaluwe.com>" __author__ = "Jan Decaluwe <jan@jandecaluwe.com>"
__version__ = "$Revision$" __revision__ = "$Revision$"
__date__ = "$Date$" __date__ = "$Date$"
from __future__ import generators from __future__ import generators

View File

@ -20,7 +20,7 @@
""" Run unit tests for Cosimulation """ """ Run unit tests for Cosimulation """
__author__ = "Jan Decaluwe <jan@jandecaluwe.com>" __author__ = "Jan Decaluwe <jan@jandecaluwe.com>"
__version__ = "$Revision$" __revision__ = "$Revision$"
__date__ = "$Date$" __date__ = "$Date$"
from __future__ import generators from __future__ import generators

View File

@ -20,7 +20,7 @@
""" Run the unit tests for Signal """ """ Run the unit tests for Signal """
__author__ = "Jan Decaluwe <jan@jandecaluwe.com>" __author__ = "Jan Decaluwe <jan@jandecaluwe.com>"
__version__ = "$Revision$" __revision__ = "$Revision$"
__date__ = "$Date$" __date__ = "$Date$"
import operator import operator

View File

@ -20,7 +20,7 @@
""" Run unit tests for Simulation """ """ Run unit tests for Simulation """
__author__ = "Jan Decaluwe <jan@jandecaluwe.com>" __author__ = "Jan Decaluwe <jan@jandecaluwe.com>"
__version__ = "$Revision$" __revision__ = "$Revision$"
__date__ = "$Date$" __date__ = "$Date$"
from __future__ import generators from __future__ import generators

View File

@ -20,7 +20,7 @@
""" Run all myhdl unit tests. """ """ Run all myhdl unit tests. """
__author__ = "Jan Decaluwe <jan@jandecaluwe.com>" __author__ = "Jan Decaluwe <jan@jandecaluwe.com>"
__version__ = "$Revision$" __revision__ = "$Revision$"
__date__ = "$Date$" __date__ = "$Date$"
import test_Simulation, test_Signal, test_intbv, test_Cosimulation, test_misc, \ import test_Simulation, test_Signal, test_intbv, test_Cosimulation, test_misc, \

View File

@ -20,7 +20,7 @@
""" Run the unit tests for always_comb """ """ Run the unit tests for always_comb """
__author__ = "Jan Decaluwe <jan@jandecaluwe.com>" __author__ = "Jan Decaluwe <jan@jandecaluwe.com>"
__version__ = "$Revision$" __revision__ = "$Revision$"
__date__ = "$Date$" __date__ = "$Date$"
from __future__ import generators from __future__ import generators

View File

@ -20,7 +20,7 @@
""" Run the intbv unit tests. """ """ Run the intbv unit tests. """
__author__ = "Jan Decaluwe <jan@jandecaluwe.com>" __author__ = "Jan Decaluwe <jan@jandecaluwe.com>"
__version__ = "$Revision$" __revision__ = "$Revision$"
__date__ = "$Date$" __date__ = "$Date$"
import unittest import unittest

View File

@ -20,7 +20,7 @@
""" Run the unit tests for Signal """ """ Run the unit tests for Signal """
__author__ = "Jan Decaluwe <jan@jandecaluwe.com>" __author__ = "Jan Decaluwe <jan@jandecaluwe.com>"
__version__ = "$Revision$" __revision__ = "$Revision$"
__date__ = "$Date$" __date__ = "$Date$"
from __future__ import generators from __future__ import generators

View File

@ -29,7 +29,7 @@ bin -- returns a binary string representation.
""" """
__author__ = "Jan Decaluwe <jan@jandecaluwe.com>" __author__ = "Jan Decaluwe <jan@jandecaluwe.com>"
__version__ = "$Revision$" __revision__ = "$Revision$"
__date__ = "$Date$" __date__ = "$Date$"
import exceptions import exceptions