mirror of
https://github.com/myhdl/myhdl.git
synced 2025-01-24 21:52:56 +08:00
version / revision
This commit is contained in:
parent
1e177de237
commit
9dd45018a6
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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 = []
|
||||||
|
@ -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"""
|
||||||
|
@ -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"
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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, \
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user