cocotb 1.8.1__cp36-cp36m-win32.whl → 1.9.0rc1__cp36-cp36m-win32.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of cocotb might be problematic. Click here for more details.

Files changed (71) hide show
  1. cocotb/_version.py +1 -1
  2. cocotb/binary.py +45 -14
  3. cocotb/config.py +10 -16
  4. cocotb/decorators.py +7 -1
  5. cocotb/handle.py +1 -1
  6. cocotb/libs/cocotb.dll +0 -0
  7. cocotb/libs/cocotb.exp +0 -0
  8. cocotb/libs/cocotb.lib +0 -0
  9. cocotb/libs/cocotbfli_modelsim.dll +0 -0
  10. cocotb/libs/cocotbfli_modelsim.exp +0 -0
  11. cocotb/libs/cocotbfli_modelsim.lib +0 -0
  12. cocotb/libs/cocotbutils.dll +0 -0
  13. cocotb/libs/cocotbutils.exp +0 -0
  14. cocotb/libs/cocotbutils.lib +0 -0
  15. cocotb/libs/cocotbvhpi_aldec.dll +0 -0
  16. cocotb/libs/cocotbvhpi_aldec.exp +0 -0
  17. cocotb/libs/cocotbvhpi_aldec.lib +0 -0
  18. cocotb/libs/cocotbvhpi_modelsim.dll +0 -0
  19. cocotb/libs/cocotbvhpi_modelsim.exp +0 -0
  20. cocotb/libs/cocotbvhpi_modelsim.lib +0 -0
  21. cocotb/libs/cocotbvpi_aldec.dll +0 -0
  22. cocotb/libs/cocotbvpi_aldec.exp +0 -0
  23. cocotb/libs/cocotbvpi_aldec.lib +0 -0
  24. cocotb/libs/cocotbvpi_ghdl.dll +0 -0
  25. cocotb/libs/cocotbvpi_ghdl.exp +0 -0
  26. cocotb/libs/cocotbvpi_ghdl.lib +0 -0
  27. cocotb/libs/cocotbvpi_icarus.exp +0 -0
  28. cocotb/libs/cocotbvpi_icarus.lib +0 -0
  29. cocotb/libs/cocotbvpi_icarus.vpl +0 -0
  30. cocotb/libs/cocotbvpi_modelsim.dll +0 -0
  31. cocotb/libs/cocotbvpi_modelsim.exp +0 -0
  32. cocotb/libs/cocotbvpi_modelsim.lib +0 -0
  33. cocotb/libs/embed.dll +0 -0
  34. cocotb/libs/embed.exp +0 -0
  35. cocotb/libs/embed.lib +0 -0
  36. cocotb/libs/gpi.dll +0 -0
  37. cocotb/libs/gpi.exp +0 -0
  38. cocotb/libs/gpi.lib +0 -0
  39. cocotb/libs/gpilog.dll +0 -0
  40. cocotb/libs/gpilog.exp +0 -0
  41. cocotb/libs/gpilog.lib +0 -0
  42. cocotb/libs/pygpilog.dll +0 -0
  43. cocotb/libs/pygpilog.exp +0 -0
  44. cocotb/libs/pygpilog.lib +0 -0
  45. cocotb/runner.py +487 -120
  46. cocotb/scheduler.py +4 -8
  47. cocotb/share/lib/verilator/verilator.cpp +50 -8
  48. cocotb/share/makefiles/Makefile.inc +4 -10
  49. cocotb/share/makefiles/Makefile.sim +5 -5
  50. cocotb/share/makefiles/simulators/Makefile.activehdl +3 -3
  51. cocotb/share/makefiles/simulators/Makefile.cvc +1 -1
  52. cocotb/share/makefiles/simulators/Makefile.ghdl +29 -1
  53. cocotb/share/makefiles/simulators/Makefile.icarus +4 -4
  54. cocotb/share/makefiles/simulators/Makefile.ius +1 -1
  55. cocotb/share/makefiles/simulators/Makefile.nvc +64 -0
  56. cocotb/share/makefiles/simulators/Makefile.questa +1 -1
  57. cocotb/share/makefiles/simulators/Makefile.riviera +28 -12
  58. cocotb/share/makefiles/simulators/Makefile.vcs +2 -2
  59. cocotb/share/makefiles/simulators/Makefile.verilator +11 -5
  60. cocotb/share/makefiles/simulators/Makefile.xcelium +6 -1
  61. cocotb/simulator.cp36-win32.exp +0 -0
  62. cocotb/simulator.cp36-win32.lib +0 -0
  63. cocotb/simulator.cp36-win32.pyd +0 -0
  64. cocotb/triggers.py +102 -29
  65. {cocotb-1.8.1.dist-info → cocotb-1.9.0rc1.dist-info}/METADATA +3 -3
  66. cocotb-1.9.0rc1.dist-info/RECORD +113 -0
  67. cocotb-1.8.1.dist-info/RECORD +0 -112
  68. {cocotb-1.8.1.dist-info → cocotb-1.9.0rc1.dist-info}/LICENSE +0 -0
  69. {cocotb-1.8.1.dist-info → cocotb-1.9.0rc1.dist-info}/WHEEL +0 -0
  70. {cocotb-1.8.1.dist-info → cocotb-1.9.0rc1.dist-info}/entry_points.txt +0 -0
  71. {cocotb-1.8.1.dist-info → cocotb-1.9.0rc1.dist-info}/top_level.txt +0 -0
cocotb/triggers.py CHANGED
@@ -28,15 +28,17 @@
28
28
  """A collections of triggers which a testbench can await."""
29
29
 
30
30
  import abc
31
+ import functools
31
32
  import inspect
32
33
  import warnings
33
34
  from collections.abc import Awaitable
34
35
  from decimal import Decimal
35
36
  from numbers import Real
36
- from typing import Any, Coroutine, Optional, TypeVar, Union
37
+ from typing import Any, Callable, Coroutine, Optional, TypeVar, Union
37
38
 
38
39
  import cocotb
39
40
  from cocotb import outcomes, simulator
41
+ from cocotb._deprecation import deprecated
40
42
  from cocotb.log import SimLog
41
43
  from cocotb.task import Task
42
44
  from cocotb.utils import (
@@ -178,7 +180,7 @@ class Timer(GPITrigger):
178
180
  units: str = "step",
179
181
  *,
180
182
  round_mode: Optional[str] = None,
181
- time_ps: Union[Real, Decimal] = None
183
+ time_ps: Union[Real, Decimal] = None,
182
184
  ) -> None:
183
185
  """
184
186
  Args:
@@ -462,15 +464,20 @@ class Event:
462
464
  def __init__(self, name=None):
463
465
  self._pending = []
464
466
  self.name = name
465
- self.fired = False
467
+ self._fired = False
466
468
  self.data = None
467
469
 
470
+ @property
471
+ @deprecated("The `.fired` attribute is deprecated, use `.is_set()` instead.")
472
+ def fired(self) -> bool:
473
+ return self._fired
474
+
468
475
  def _prime_trigger(self, trigger, callback):
469
476
  self._pending.append(trigger)
470
477
 
471
478
  def set(self, data=None):
472
479
  """Wake up all coroutines blocked on this event."""
473
- self.fired = True
480
+ self._fired = True
474
481
  self.data = data
475
482
 
476
483
  p = self._pending[:]
@@ -488,8 +495,8 @@ class Event:
488
495
  To reset the event (and enable the use of ``wait`` again),
489
496
  :meth:`clear` should be called.
490
497
  """
491
- if self.fired:
492
- return NullTrigger(name="{}.wait()".format(str(self)))
498
+ if self._fired:
499
+ return NullTrigger(name=f"{str(self)}.wait()")
493
500
  return _Event(self)
494
501
 
495
502
  def clear(self):
@@ -497,11 +504,11 @@ class Event:
497
504
 
498
505
  Subsequent calls to :meth:`~cocotb.triggers.Event.wait` will block until
499
506
  :meth:`~cocotb.triggers.Event.set` is called again."""
500
- self.fired = False
507
+ self._fired = False
501
508
 
502
509
  def is_set(self) -> bool:
503
- """Return true if event has been set"""
504
- return self.fired
510
+ """Return ``True`` if event has been set."""
511
+ return self._fired
505
512
 
506
513
  def __repr__(self):
507
514
  if self.name is None:
@@ -582,6 +589,42 @@ class _Lock(PythonTrigger):
582
589
  return "<{!r}.acquire() at {}>".format(self.parent, _pointer_str(self))
583
590
 
584
591
 
592
+ _FT = TypeVar("_FT", bound=Callable)
593
+
594
+
595
+ def _locked_back_compat_dec(func: _FT) -> _FT:
596
+ # this hack is implemented this way so that it is easy to delete later
597
+
598
+ def get(inst, _=None):
599
+ method = _LockBackCompat(inst, func)
600
+ # cache bound method on object to override the descriptor
601
+ setattr(inst, func.__name__, method)
602
+ return method
603
+
604
+ # Override the default function descriptor with one that returns a _LockBackCompat object that *acts* like a bound method,
605
+ # but also defines the __bool__ overload that provides the deprecation warning.
606
+ func.__get__ = get
607
+ return func
608
+
609
+
610
+ class _LockBackCompat:
611
+ def __init__(self, inst, func):
612
+ self._inst = inst
613
+ self._func = func
614
+ functools.update_wrapper(self, func)
615
+
616
+ def __call__(self):
617
+ return self._func(self._inst)
618
+
619
+ def __bool__(self):
620
+ warnings.warn(
621
+ f"Using `{self._func.__qualname__}` as a boolean attribute is deprecated. Call it as if it were a method instead.",
622
+ DeprecationWarning,
623
+ stacklevel=2,
624
+ )
625
+ return self._func(self._inst)
626
+
627
+
585
628
  class Lock:
586
629
  """Lock primitive (not re-entrant).
587
630
 
@@ -606,13 +649,22 @@ class Lock:
606
649
  self._pending_unprimed = []
607
650
  self._pending_primed = []
608
651
  self.name = name
609
- self.locked = False #: ``True`` if the lock is held.
652
+ self._locked = False
653
+
654
+ @_locked_back_compat_dec
655
+ def locked(self) -> bool:
656
+ """Return ``True`` if the lock has been acquired.
657
+
658
+ .. versionchanged:: 2.0
659
+ This is now a method rather than an attribute, to match :meth:`asyncio.Lock.locked`.
660
+ """
661
+ return self._locked
610
662
 
611
663
  def _prime_trigger(self, trigger, callback):
612
664
  self._pending_unprimed.remove(trigger)
613
665
 
614
- if not self.locked:
615
- self.locked = True
666
+ if not self._locked:
667
+ self._locked = True
616
668
  callback(trigger)
617
669
  else:
618
670
  self._pending_primed.append(trigger)
@@ -625,19 +677,19 @@ class Lock:
625
677
 
626
678
  def release(self):
627
679
  """Release the lock."""
628
- if not self.locked:
680
+ if not self._locked:
629
681
  raise TriggerException(
630
682
  "Attempt to release an unacquired Lock %s" % (str(self))
631
683
  )
632
684
 
633
- self.locked = False
685
+ self._locked = False
634
686
 
635
687
  # nobody waiting for this lock
636
688
  if not self._pending_primed:
637
689
  return
638
690
 
639
691
  trigger = self._pending_primed.pop(0)
640
- self.locked = True
692
+ self._locked = True
641
693
  trigger()
642
694
 
643
695
  def __repr__(self):
@@ -652,9 +704,10 @@ class Lock:
652
704
  _pointer_str(self),
653
705
  )
654
706
 
707
+ @deprecated("`bool(lock)` is deprecated. Use the `.locked()` method instead.")
655
708
  def __bool__(self):
656
709
  """Provide boolean of a Lock"""
657
- return self.locked
710
+ return self._locked
658
711
 
659
712
  async def __aenter__(self):
660
713
  return await self.acquire()
@@ -669,11 +722,17 @@ class NullTrigger(Trigger):
669
722
  Primarily for internal scheduler use.
670
723
  """
671
724
 
672
- def __init__(self, name=None, outcome=None):
725
+ def __init__(self, name=None, outcome=None, _outcome=None):
673
726
  super().__init__()
674
727
  self._callback = None
675
728
  self.name = name
676
- self.__outcome = outcome
729
+ if outcome is not None:
730
+ warnings.warn(
731
+ "Passing the `outcome` argument and having that be the result of the `await` expression on this Trigger is deprecated.",
732
+ DeprecationWarning,
733
+ stacklevel=2,
734
+ )
735
+ self.__outcome = _outcome if _outcome is not None else outcome
677
736
 
678
737
  @property
679
738
  def _outcome(self):
@@ -709,6 +768,7 @@ class Join(PythonTrigger, metaclass=_ParameterizedSingletonAndABC):
709
768
  If the coroutine threw an exception, the :keyword:`await` will re-raise it.
710
769
 
711
770
  """
771
+
712
772
  __slots__ = ("_coroutine",)
713
773
 
714
774
  @classmethod
@@ -721,25 +781,30 @@ class Join(PythonTrigger, metaclass=_ParameterizedSingletonAndABC):
721
781
 
722
782
  @property
723
783
  def _outcome(self):
724
- return self._coroutine._outcome
784
+ outcome = self._coroutine._outcome
785
+ if type(self._coroutine) is Task and isinstance(outcome, outcomes.Error):
786
+ warnings.warn(
787
+ "Tasks started with `cocotb.start_soon()` that raise Exceptions will not propagate those Exceptions in 2.0. "
788
+ "Instead such Tasks will *always* fail the test. "
789
+ "An alternative for `cocotb.start_soon()` that *always* propagates Exceptions will be added in 2.0.",
790
+ FutureWarning,
791
+ )
792
+ return outcome
725
793
 
726
794
  @property
795
+ @deprecated("Use `task.result()` to get the result of a joined Task.")
727
796
  def retval(self):
728
797
  """The return value of the joined coroutine.
729
798
 
730
- .. note::
731
- Typically there is no need to use this attribute - the
732
- following code samples are equivalent::
799
+ .. deprecated:: 1.9
733
800
 
734
- forked = cocotb.start_soon(mycoro())
735
- j = Join(forked)
736
- await j
737
- result = j.retval
801
+ Use :meth:`Task.result() <cocotb.task.Task.result` to get the result of a joined Task.
738
802
 
739
- ::
803
+ .. code-block: python3
740
804
 
741
805
  forked = cocotb.start_soon(mycoro())
742
- result = await Join(forked)
806
+ await forked.join()
807
+ result = forked.result()
743
808
  """
744
809
  return self._coroutine.result()
745
810
 
@@ -752,6 +817,14 @@ class Join(PythonTrigger, metaclass=_ParameterizedSingletonAndABC):
752
817
  def __repr__(self):
753
818
  return "{}({!s})".format(type(self).__qualname__, self._coroutine)
754
819
 
820
+ def __await__(self):
821
+ warnings.warn(
822
+ "`await`ing a Join trigger will return the Join trigger and not the result of the joined Task in 2.0.",
823
+ FutureWarning,
824
+ stacklevel=2,
825
+ )
826
+ return (yield self)
827
+
755
828
 
756
829
  class Waitable(Awaitable):
757
830
  """
@@ -902,7 +975,7 @@ class First(_AggregateWaitable):
902
975
  # traceback, even if it is obvious top cocotb maintainers.
903
976
  # - Using `NullTrigger` here instead of `result = completed[0].get()`
904
977
  # means we avoid inserting an `outcome.get` frame in the traceback
905
- first_trigger = NullTrigger(outcome=completed[0])
978
+ first_trigger = NullTrigger(_outcome=completed[0])
906
979
  return await first_trigger # the first of multiple triggers that fired
907
980
 
908
981
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cocotb
3
- Version: 1.8.1
3
+ Version: 1.9.0rc1
4
4
  Summary: cocotb is a coroutine based cosimulation library for writing VHDL and Verilog testbenches in Python.
5
5
  Home-page: https://www.cocotb.org
6
6
  Author: Chris Higgs, Stuart Hodgson
@@ -52,10 +52,10 @@ The current stable version of cocotb requires:
52
52
  [GHDL](https://docs.cocotb.org/en/stable/simulator_support.html#ghdl) or
53
53
  [other simulator](https://docs.cocotb.org/en/stable/simulator_support.html))
54
54
 
55
- After installing these dependencies, the latest stable version of cocotb can be installed with pip.
55
+ After installing these dependencies, the latest stable version 1.x of cocotb can be installed with pip.
56
56
 
57
57
  ```command
58
- pip install cocotb
58
+ pip install 'cocotb == 1.*'
59
59
  ```
60
60
 
61
61
  For more details on installation, including prerequisites,
@@ -0,0 +1,113 @@
1
+ cocotb/ANSI.py,sha256=BXtYyxla8R_bHRasjDyZGibYDNoh2deY8Snyre8YT54,3458
2
+ cocotb/__init__.py,sha256=_NKjtHVLsDKgFPI7oXqNPKxiHt7EO-0XmUkqSLgGI1A,11650
3
+ cocotb/_deprecation.py,sha256=zCaBqq6H9GRyKgSij9NvLs6Ku5CIdvKuGW6rLwi1Hhk,1189
4
+ cocotb/_py_compat.py,sha256=Z-6oewHZbG79nO_tILrRrClahxjYaeEShezbcLnJsc4,2754
5
+ cocotb/_sim_versions.py,sha256=sZWOj9odl_yPo92B9k_b1c2XHll4roD-oHnVSqY4VhE,3689
6
+ cocotb/_version.py,sha256=i1OmvFAR76AivZHfrGKwaow25peotJSFWQlVLbU8OrI,306
7
+ cocotb/binary.py,sha256=jeB1qpQbBMxNTYKSmIlMWy7YGB-pXxa_wTJERmNo_qQ,28008
8
+ cocotb/clock.py,sha256=tyrtalfTCUiBTTfo_4kIGKG5mnCSCq3hLmAxwrmyQyM,6734
9
+ cocotb/config.py,sha256=70EKduzmki3femKYnhjHgVYOyw_abZ8PTxBvOQ9NmGI,9943
10
+ cocotb/decorators.py,sha256=h_mn2iOXybXj-29lt39PdStas5NyTRP9475iu_c-wqA,12059
11
+ cocotb/handle.py,sha256=Amc7Qe-ayjEHEOwBDHeQY9QAsmuxzM-dVBvUZ9rlsyQ,42802
12
+ cocotb/ipython_support.py,sha256=gon5kkyYVl2nJPHZmyo33vFkb0F9qEPMdPKh70WJx0g,3228
13
+ cocotb/log.py,sha256=_pq5KzdU3dbFdSmaJfu_GhLSmIQaGuNsXQkIulSZuT0,10746
14
+ cocotb/memdebug.py,sha256=UzsA9FtitLlxt-Y9pf_vlknKYX13mroVjZqvax9ddzs,1888
15
+ cocotb/outcomes.py,sha256=4khaKTI7dZWhIAH1vZ7XWejQtlSGWb1-ZuHvSRClK9w,1355
16
+ cocotb/queue.py,sha256=BoFIJ8tO2HGTPb_30I9Td7-W6VLQ54kquPrc5qLw2dk,5338
17
+ cocotb/regression.py,sha256=XdokhhpR3GjriV3Hx-ihIayyjVLUiN27MdHldXMr1JE,33905
18
+ cocotb/result.py,sha256=0B3i0wXair7gfKlelTrRSkFpPbyuhsW2kPtSvSasweo,6905
19
+ cocotb/runner.py,sha256=MoWErcb45_kNA-OzmrmNEQ4VEgy0pxPnw8oBGPNT7-w,51685
20
+ cocotb/scheduler.py,sha256=VT7Dg0Jo6NfbsRtImnNVdox0UEtpxpMEi6jNiBx4tZQ,42138
21
+ cocotb/simulator.cp36-win32.exp,sha256=0AY9rhPE7rlmp5WlnKp9lkCE3NfJLfr8dIOCbzB98lI,738
22
+ cocotb/simulator.cp36-win32.lib,sha256=Y0nKKF5LhMO2-PbbtSyLvKXc8_KkpBY_pq1_IDG46WI,1982
23
+ cocotb/simulator.cp36-win32.pyd,sha256=bygGazXlTPcTaAei3VIMjHl_tplFlu1MH1z3e1RglWw,29184
24
+ cocotb/simulator.cp36-win32.pyd.2.config,sha256=JGoavZmGw71REMRGu8DrBlQezZSCkQx7E3GOzGIf9_o,263
25
+ cocotb/task.py,sha256=l51CgFAzBfKQD0snRuROoU24g52fd91wZM8GfSc-CQA,11360
26
+ cocotb/triggers.py,sha256=GP79vYMcH78HjHXfUaHLyOl1uJM8R5XL34i93HSmGHU,36077
27
+ cocotb/utils.py,sha256=JTc870duDxUtSIM_UxXhsW9DtBvz6ziTagpn5wQ2ryU,23762
28
+ cocotb/wavedrom.py,sha256=xQ_xG_cdUc4q4hju7Sjys-gFrJCg7RngCPFNI3A4KAA,6187
29
+ cocotb/xunit_reporter.py,sha256=DrRM7Fn9LBY2hmtWI0PNFkiULpdNtqNzAk-1aw8Zd80,3632
30
+ cocotb/_vendor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
+ cocotb/_vendor/distutils_version.py,sha256=k4Zipnnw88hyoE5MLBbgcXh9iu7iYGK3K5s97wVpOFE,13185
32
+ cocotb/libs/cocotb.dll,sha256=fK4T_LbmJ8i76aJH1UIMOKaTCtrZ1iI4rt6AsUDSg04,25088
33
+ cocotb/libs/cocotb.exp,sha256=ElYV0Ng7lawpnZy9rhoxvSEXOVmSOLCIL3dPLiWbABY,1105
34
+ cocotb/libs/cocotb.lib,sha256=epo5BfQU6V0HYLCdH1Mtx9oxj1HuxcqrCSvhTc2GbVQ,2372
35
+ cocotb/libs/cocotbfli_modelsim.dll,sha256=-bAXL3COoz7jp2-IERK2cu9pmrispt961z0peHOHv7g,82432
36
+ cocotb/libs/cocotbfli_modelsim.exp,sha256=aTpj9iwsnp4qeI73aF_DBisTHxH9tz6eBHBScg-hgO0,867
37
+ cocotb/libs/cocotbfli_modelsim.lib,sha256=Rm8YIFgXuOlsowxiYpl9vrdKO3QVVUIfNeKCEg5u5UM,2176
38
+ cocotb/libs/cocotbutils.dll,sha256=IvbOdQlGGcfVB8fQASPuC9_uyTVKWNJosFglEcIGpG0,10240
39
+ cocotb/libs/cocotbutils.exp,sha256=QOqaM68aPV64PXoXzcWrtu2pSmXj_upKmOYNZaZp4jE,968
40
+ cocotb/libs/cocotbutils.lib,sha256=Ivf9Fgf_LsAr7hZlzddsdlAheTAyAfQM_c7B8kTaiS4,2154
41
+ cocotb/libs/cocotbvhpi_aldec.dll,sha256=m6Gh4NNFwAwVuXma_xClUB19ok6BuD36Bdl4tLZQUNM,76288
42
+ cocotb/libs/cocotbvhpi_aldec.exp,sha256=oHS6sGPGLvDDJlPpFsiMmFMYm5YHHwbI5iZ2cE0rA48,1067
43
+ cocotb/libs/cocotbvhpi_aldec.lib,sha256=Y7EP3I6XZen5JflReW9q6EHVMcVeiq-E7TPsEfga4FY,2448
44
+ cocotb/libs/cocotbvhpi_modelsim.dll,sha256=_bHEEu-4E-4d0WbBrD2pLsw0HiqNA7qgvqx_Hpulr0A,76288
45
+ cocotb/libs/cocotbvhpi_modelsim.exp,sha256=k3kzcsB7RBhxKDF0JGDlp0m1HcZOd4FrJG1eCOTiysQ,1074
46
+ cocotb/libs/cocotbvhpi_modelsim.lib,sha256=h1MZ0x-Fmbq-KblUTCP04VZZwmaHCPqkqWCEuZPTqjk,2492
47
+ cocotb/libs/cocotbvpi_aldec.dll,sha256=0HD8JFhr1Ybh2-ECHuhjWRjvWPYd84Nso1_PufAiFUE,61952
48
+ cocotb/libs/cocotbvpi_aldec.exp,sha256=k8AEZIKMs3bLfB4vyiyJXJsqZOQX6iHY1rShDDCSu6s,1062
49
+ cocotb/libs/cocotbvpi_aldec.lib,sha256=Ju1RIIwxaF9iaHyeQKUV7OYhPJwwFAuSqU06EKOjVeg,2428
50
+ cocotb/libs/cocotbvpi_ghdl.dll,sha256=2sCOgGj2Dw2rWFEV9tnI3UpmK7i3DxIHue08OyRdgsI,61952
51
+ cocotb/libs/cocotbvpi_ghdl.exp,sha256=zpYTVfdVI8QfYk4TygaM3RChMEuXlNTfZGewsJ2wOtI,1061
52
+ cocotb/libs/cocotbvpi_ghdl.lib,sha256=eQ8swQP5BuNnb16EB0M6Y0F4JFmkrur3KoI-RhMiN5s,2412
53
+ cocotb/libs/cocotbvpi_icarus.exp,sha256=WcUz_cT_gmjBVY8f1pETRViZDWNywHDDcRXngn7T03E,1065
54
+ cocotb/libs/cocotbvpi_icarus.lib,sha256=cKxRThBsjexib1d2GNdPuO4xlo63PCxM1eg6qe9DoM0,2442
55
+ cocotb/libs/cocotbvpi_icarus.vpl,sha256=8oLCIvQiygcOKj47weyXRGHlTO9Ptx0vegdJ04zaBtQ,61952
56
+ cocotb/libs/cocotbvpi_modelsim.dll,sha256=LbEKaBZVwNgkMVbxFKEDecDpc0SgJcNOBv5aVclcq8A,61952
57
+ cocotb/libs/cocotbvpi_modelsim.exp,sha256=5WSmj30yz9FO7bzgzdrBUwgTr1zmrWvywH19Ib25uUw,1069
58
+ cocotb/libs/cocotbvpi_modelsim.lib,sha256=1qYAdoJqgesslAT0a-jZR8pmZpJ4Vmb8FCq9OcweCD0,2472
59
+ cocotb/libs/embed.dll,sha256=dsl7kH-C1lkrRx8XpidIfJ_sNKndo9r8xiaZkq-uQXs,10752
60
+ cocotb/libs/embed.exp,sha256=TUTj2IcOBvVAUU475ZhDm3dUQIGhV2Y2f2Go_FlafgU,1092
61
+ cocotb/libs/embed.lib,sha256=cyeoSX3KmWARNeGw0OQXD6TCGIJu1d85bjzd0DzrxGo,2336
62
+ cocotb/libs/gpi.dll,sha256=u1zgeF8haR2W7yuVzRd4Qs8qSqm0M6ZlrkBFbfS3bUM,41472
63
+ cocotb/libs/gpi.exp,sha256=Dr9jR6Kf_vKSE_vCmYjpfSNbAa1vm4V_ZdbQHSXYa20,20700
64
+ cocotb/libs/gpi.lib,sha256=8cjgLYIaKwGiY8xphVv5x58j0iOHUNLk7iPV6B2jNUk,33912
65
+ cocotb/libs/gpilog.dll,sha256=0_wInpmgOCh2PpKO22ERnHJ1O1TDaqkCeUAAF2TT-7o,13824
66
+ cocotb/libs/gpilog.exp,sha256=vQXp1iH-ut-xSZodhvvqMC31QHJMWvFNpzg8Vt9MJKE,1644
67
+ cocotb/libs/gpilog.lib,sha256=d75IDOQjDYbY6NmbH2c_qeDyEN7azTDElXeBAqpBTYQ,3272
68
+ cocotb/libs/pygpilog.dll,sha256=qUcSMjfDcoSU64oQp2eUO_qnpxxSbg0se3QFWn4MnkA,16896
69
+ cocotb/libs/pygpilog.exp,sha256=qNxuhZzBWUVnSOO0XVwQe0MjNXJC5ndWvtsAX_pdGP0,1037
70
+ cocotb/libs/pygpilog.lib,sha256=5qji_I2-Sn3CgKLussqFoya63DzUNB2H6QmDfCDv0Bw,2280
71
+ cocotb/share/def/.gitignore,sha256=JYPaHghbqtLFl-9QtOWaAHvoDOhVxEewSYwHgoYYgf8,46
72
+ cocotb/share/def/README.md,sha256=dptv3zHQGzMqLt3Zv4XOd5IZeGqQS7Lwcq1XCs3BcR0,380
73
+ cocotb/share/def/aldec.def,sha256=ItgxVlRaVuD20jGTN3JpkbHEO8jPfU5XjFlUqDUXzlU,991
74
+ cocotb/share/def/ghdl.def,sha256=ETQh5VI72dWSJi_ig5m163GfLrxScYUamt5BjHjoKsY,705
75
+ cocotb/share/def/icarus.def,sha256=VRqkgUyzR2sa916Ra56cZVIb4kzbqDlJVWIOc3389qY,698
76
+ cocotb/share/def/modelsim.def,sha256=_6VexHTDM7geGOfedUCm6CLRpXS4DrcHUlP_BQxL1Nc,2389
77
+ cocotb/share/include/cocotb_utils.h,sha256=v3byzF0uZbks5umkKBe-mgB9J3ShtKwam0_S2vIS10A,4091
78
+ cocotb/share/include/embed.h,sha256=Fw0szHcAsXyrK_APXxZE-t0ttqmA8IUC72XXYO5yPl8,2509
79
+ cocotb/share/include/exports.h,sha256=RRDg9diMCUUJxdzKX0B6TGmQBNttcoVMBVCCLUUKsrA,677
80
+ cocotb/share/include/gpi.h,sha256=FvlF0QQD1rfy_jZ6Q_EnUpymNz7BtrGCgunXV8hg40k,10264
81
+ cocotb/share/include/gpi_logging.h,sha256=_Z00YAtMqSr5Mk3WSQ0YjQ5nyPvsxA5vmou1G8lX-B4,10553
82
+ cocotb/share/include/py_gpi_logging.h,sha256=zuuDIsKCdLOfUwOMv5EzeQWHuM0PaHzYE1kIH6TSWys,672
83
+ cocotb/share/include/vhpi_user_ext.h,sha256=VLXbA-oeO83mL1vR0e4Ye0zMe5ijIaXnvT2FRFgsYDY,654
84
+ cocotb/share/include/vpi_user_ext.h,sha256=ofqT24X1KOLeIDowuZxKDYvCTgXAy_RzMz5-_LjSZas,2511
85
+ cocotb/share/lib/verilator/verilator.cpp,sha256=xlQH5QcPVkkPZ_N75XocvKWvA649n8AOppVlaarHZWQ,5841
86
+ cocotb/share/makefiles/Makefile.deprecations,sha256=83TZ1sYlXpVL5erEAr1Y0ZknoX-3vVn5gcwHwaAf30k,428
87
+ cocotb/share/makefiles/Makefile.inc,sha256=C9tqM_q9ApnznJ4BE4vB1TDmfvXhP6WzFfwFpFeu8g4,6886
88
+ cocotb/share/makefiles/Makefile.sim,sha256=ZcH75xfEH-8tr3ep_Nt64R5F-sRKFWucxodGNx0g8UY,5406
89
+ cocotb/share/makefiles/simulators/Makefile.activehdl,sha256=mnyJnKS_kFt0GRQMvTIsxQrS7cX7l17mu1BosvJy9j8,2703
90
+ cocotb/share/makefiles/simulators/Makefile.cvc,sha256=FyoJAf3S69441uHa94zO8PYNn6mhG2wJrfAF-B8GTEI,4013
91
+ cocotb/share/makefiles/simulators/Makefile.ghdl,sha256=SzBp8k9zoCnf-YS4AGMRLZAmlmglfF8us1fGimqoDK8,4849
92
+ cocotb/share/makefiles/simulators/Makefile.icarus,sha256=rP0b4s74sjGJHf5fY8YZXF3vRI_hkonTOAp09t3D4pw,4478
93
+ cocotb/share/makefiles/simulators/Makefile.ius,sha256=ddE1WNJjjqhsCYX4h0UFYxanVTWeuaAj5w4cHBy7wrE,5076
94
+ cocotb/share/makefiles/simulators/Makefile.modelsim,sha256=MQYmRb59nvUkY_f7GXUQVEYXQnU4IWA2-_G0N08StuI,1938
95
+ cocotb/share/makefiles/simulators/Makefile.nvc,sha256=67ExfYS0a94yl2zapb-dqAwjbAsH7w_pbYnaXSUT1Zc,2187
96
+ cocotb/share/makefiles/simulators/Makefile.questa,sha256=QTWA-54yrG7tuzXDBCx5eKmRXaC77vs7Il89xDNkG5I,6581
97
+ cocotb/share/makefiles/simulators/Makefile.riviera,sha256=h0Rvkedvxn9r5lsCXi9kgeRfZrCdqXhITx-6TOprHNU,6841
98
+ cocotb/share/makefiles/simulators/Makefile.vcs,sha256=nT_Qang2qJg7XOF2ljeBpZSmfcw3mTu50LKz6Ltu2jI,3843
99
+ cocotb/share/makefiles/simulators/Makefile.verilator,sha256=8XxBE-uL2cINU3WyW64iOXAJtM3fUppliKvfkebg_-U,2657
100
+ cocotb/share/makefiles/simulators/Makefile.xcelium,sha256=MDHygJhSRuMBiDcGlLXF26E2yNGO79utOiGmE0sJTFA,5762
101
+ cocotb/types/__init__.py,sha256=-M5mR--OWtFZ7Y4pjxB9CF4kmFtroDR7kzz1ba6h0No,1853
102
+ cocotb/types/array.py,sha256=JAg5YB84WwERF7S5SK16HvmzCYJgmc5trLATJT3TIqo,11208
103
+ cocotb/types/logic.py,sha256=PH5zocv9SpJam9Scc8Cl3uiDtPdtixhbiVLXjJPsPW8,8791
104
+ cocotb/types/logic_array.py,sha256=0XpStXNA7qY8FIoamb-dnn-IbzIOXIBoxd0tiWMlhVE,10255
105
+ cocotb/types/range.py,sha256=f25nic3X8jpd14nFU61D3izEOT77zPF_txZkWNrZ7N8,6428
106
+ pygpi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
107
+ pygpi/entry.py,sha256=LDJ8WK-s9nY_A5GEvPUuJTvnGqZvkhOe7i_yGQmqrI0,972
108
+ cocotb-1.9.0rc1.dist-info/LICENSE,sha256=oBp8aKF9rhLjG78uW4zxmiVsjA8Viwwdyj3nSbEXpmc,1570
109
+ cocotb-1.9.0rc1.dist-info/METADATA,sha256=4YaiPezeSKbRNnk433cby06gzTSbDm1gXmPkIZd-YTY,6805
110
+ cocotb-1.9.0rc1.dist-info/WHEEL,sha256=ZX-iFFGFiHZRWPwXowAnONYwAL2TBxDHVbhC1HaSV9Q,97
111
+ cocotb-1.9.0rc1.dist-info/entry_points.txt,sha256=kFnPpuolM06cgf3C7fa5JZS4vzADkrxfr0dmBvgtaYg,54
112
+ cocotb-1.9.0rc1.dist-info/top_level.txt,sha256=w-hmA_Ca52PldJkt5ya7gRP9tpUXfeJUGLMfXdv5Ez4,393
113
+ cocotb-1.9.0rc1.dist-info/RECORD,,
@@ -1,112 +0,0 @@
1
- cocotb/ANSI.py,sha256=BXtYyxla8R_bHRasjDyZGibYDNoh2deY8Snyre8YT54,3458
2
- cocotb/__init__.py,sha256=_NKjtHVLsDKgFPI7oXqNPKxiHt7EO-0XmUkqSLgGI1A,11650
3
- cocotb/_deprecation.py,sha256=zCaBqq6H9GRyKgSij9NvLs6Ku5CIdvKuGW6rLwi1Hhk,1189
4
- cocotb/_py_compat.py,sha256=Z-6oewHZbG79nO_tILrRrClahxjYaeEShezbcLnJsc4,2754
5
- cocotb/_sim_versions.py,sha256=sZWOj9odl_yPo92B9k_b1c2XHll4roD-oHnVSqY4VhE,3689
6
- cocotb/_version.py,sha256=ogN2Pe-ta4b3I2osPHuKiSKcT5ts1GmKtuD1i8eIF7A,303
7
- cocotb/binary.py,sha256=YCaXafbR2xG8CFnnToELgPyfL3rc6vEYYctmwGDQb5o,26996
8
- cocotb/clock.py,sha256=tyrtalfTCUiBTTfo_4kIGKG5mnCSCq3hLmAxwrmyQyM,6734
9
- cocotb/config.py,sha256=fW8kdxRx6_1qcWzL8r5Xm1KrHec-kVZcBv7WzBixMXs,10142
10
- cocotb/decorators.py,sha256=RmFedYm9gxIWIaeeADGHJCf9lvHHSbf0M6WN2KrfGG8,11802
11
- cocotb/handle.py,sha256=A_DojPAu_qbcOFP9U_q3A-dKRvrpLhX6ZWdy3NEHenw,42787
12
- cocotb/ipython_support.py,sha256=gon5kkyYVl2nJPHZmyo33vFkb0F9qEPMdPKh70WJx0g,3228
13
- cocotb/log.py,sha256=_pq5KzdU3dbFdSmaJfu_GhLSmIQaGuNsXQkIulSZuT0,10746
14
- cocotb/memdebug.py,sha256=UzsA9FtitLlxt-Y9pf_vlknKYX13mroVjZqvax9ddzs,1888
15
- cocotb/outcomes.py,sha256=4khaKTI7dZWhIAH1vZ7XWejQtlSGWb1-ZuHvSRClK9w,1355
16
- cocotb/queue.py,sha256=BoFIJ8tO2HGTPb_30I9Td7-W6VLQ54kquPrc5qLw2dk,5338
17
- cocotb/regression.py,sha256=XdokhhpR3GjriV3Hx-ihIayyjVLUiN27MdHldXMr1JE,33905
18
- cocotb/result.py,sha256=0B3i0wXair7gfKlelTrRSkFpPbyuhsW2kPtSvSasweo,6905
19
- cocotb/runner.py,sha256=o3KB_uPh9uhrQajGDD_JkHpZO7DDsASRsPInmaQJWGk,36621
20
- cocotb/scheduler.py,sha256=quoJz8R-4xgFdII1dk271V1MDt9mps9g1QrhaV2BgnM,42375
21
- cocotb/simulator.cp36-win32.exp,sha256=KZI4eVPKaNU1P3Dy-nSkvMp1D-SJE9dhKexD96hyjI8,738
22
- cocotb/simulator.cp36-win32.lib,sha256=yGgIhnflkbuE9wlaAne4Ao7moFxpLW2y9nouUDS-PJA,1982
23
- cocotb/simulator.cp36-win32.pyd,sha256=WvQtUqv0VekBzS8ULZbEDmFhuEromNvooOMQGGyjMLQ,28160
24
- cocotb/simulator.cp36-win32.pyd.2.config,sha256=JGoavZmGw71REMRGu8DrBlQezZSCkQx7E3GOzGIf9_o,263
25
- cocotb/task.py,sha256=l51CgFAzBfKQD0snRuROoU24g52fd91wZM8GfSc-CQA,11360
26
- cocotb/triggers.py,sha256=l6jZ0rjnljCH_5iPOyoJ2uX6QC0AQn7JZdRB4vWeQtM,33259
27
- cocotb/utils.py,sha256=JTc870duDxUtSIM_UxXhsW9DtBvz6ziTagpn5wQ2ryU,23762
28
- cocotb/wavedrom.py,sha256=xQ_xG_cdUc4q4hju7Sjys-gFrJCg7RngCPFNI3A4KAA,6187
29
- cocotb/xunit_reporter.py,sha256=DrRM7Fn9LBY2hmtWI0PNFkiULpdNtqNzAk-1aw8Zd80,3632
30
- cocotb/_vendor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
- cocotb/_vendor/distutils_version.py,sha256=k4Zipnnw88hyoE5MLBbgcXh9iu7iYGK3K5s97wVpOFE,13185
32
- cocotb/libs/cocotb.dll,sha256=_6_NhhbuCnYMRQO3r4UQu1a3GhvNJ9asx_P6nAUJHkI,19456
33
- cocotb/libs/cocotb.exp,sha256=RGjG5gN_GwcF7riV9B9MP-VJ2JsL_-svahq1DL4PD9c,1105
34
- cocotb/libs/cocotb.lib,sha256=BH9SzSmVAipRWThPf76QlocUKj08hsPVBn4T7I-n1Jk,2372
35
- cocotb/libs/cocotbfli_modelsim.dll,sha256=qf0rDqLtxFpdPl_o4QrCTrgX2pRmeRzFSA7GdaMgS0o,79360
36
- cocotb/libs/cocotbfli_modelsim.exp,sha256=qSpeNuYN7-H5J0PUBpjGm3c_B20zSl0tqKzak2naVhI,867
37
- cocotb/libs/cocotbfli_modelsim.lib,sha256=OTEYm82TcEqK5NE2ImBDhWKJePRFww-DhSxEFxR2tGI,2176
38
- cocotb/libs/cocotbutils.dll,sha256=Oeb-yhDfBtmnpnqZr-84XtS4f3TWyuzPnpNXSakr5pw,10240
39
- cocotb/libs/cocotbutils.exp,sha256=O4MRMn3h8fFtMCZSrImY6kKObgt87eV9J_UqhJ1Ty78,968
40
- cocotb/libs/cocotbutils.lib,sha256=S9Hu08L4kRDvzeettgsc96viSwyzCQ1maxSqmLZhkDQ,2154
41
- cocotb/libs/cocotbvhpi_aldec.dll,sha256=sdyaQS9SA5kvsWJwqHg2KcChTxgflKSp-lYaN66NukE,75264
42
- cocotb/libs/cocotbvhpi_aldec.exp,sha256=xzSP4p64OOdxRtjmWh8X5TTz78PpB4GnpA-serU5bQo,1067
43
- cocotb/libs/cocotbvhpi_aldec.lib,sha256=UIPTeHLP_8s2fr0fkT9cc9l5nYjprDDtWC8H09o2Opo,2448
44
- cocotb/libs/cocotbvhpi_modelsim.dll,sha256=geH7gMPEp1uA5wXA5YihvIQD2_OPY_R5Daa6-1aRch8,75264
45
- cocotb/libs/cocotbvhpi_modelsim.exp,sha256=z-XNC2LxmpgMHItyGXB6pVdjHCZW7Gs1rGS-2aofkUI,1074
46
- cocotb/libs/cocotbvhpi_modelsim.lib,sha256=yWyt4bo5EgodxpPEmT1cADlk1bFcijrWHYh5JbLxjUM,2492
47
- cocotb/libs/cocotbvpi_aldec.dll,sha256=A2y7USjy4sRPok7Ewi_S280gUaTtGTTwPdbxgSOBaL0,60928
48
- cocotb/libs/cocotbvpi_aldec.exp,sha256=veM7oGmOVNJVZq86UmJCpibIwIrjL2NsCSN43CJ9M4M,1062
49
- cocotb/libs/cocotbvpi_aldec.lib,sha256=59T2hL_EDGOdlssnZUpBtM4T2HjVgGF6-VN9VyrRgHQ,2428
50
- cocotb/libs/cocotbvpi_ghdl.dll,sha256=s_qBidXEC6PHwymTr6D_r0r1nj0z_rHgZurbEfTsPSo,60928
51
- cocotb/libs/cocotbvpi_ghdl.exp,sha256=CG8nYgsy72TcvsUzivnGCPj0IjPwevYhshYicnLrv7c,1061
52
- cocotb/libs/cocotbvpi_ghdl.lib,sha256=Eyq8Nf_go9XuyqgkBdztJ8Rpv88D9VWeWmeBzKfGNz0,2412
53
- cocotb/libs/cocotbvpi_icarus.exp,sha256=vREZfElo708aeCt0wt94N72hxONNehlgRBCViALYTHI,1065
54
- cocotb/libs/cocotbvpi_icarus.lib,sha256=ylLhdTPWlO-FXRNcY31WPTv7q1CHJPOGpEXx7uafaIY,2442
55
- cocotb/libs/cocotbvpi_icarus.vpl,sha256=fOf5G10VKRX7FQ4GGwFxV-SEtlttgYHKPpVV0Hg-3DY,61440
56
- cocotb/libs/cocotbvpi_modelsim.dll,sha256=h8e7MaUVeRHXPpA7C_FJgxpaZadUQAUamds79qeLU34,60416
57
- cocotb/libs/cocotbvpi_modelsim.exp,sha256=KYNTNodB5xc17g7tfNRC2XtoK05sGn7neOw0zuVnWfg,1069
58
- cocotb/libs/cocotbvpi_modelsim.lib,sha256=Bz5AFCheW3HDzQ45wAGx5izASe4okga8ayrIl7dYleo,2472
59
- cocotb/libs/embed.dll,sha256=48VntkHZLS1en5K16ez92zcjkWZ5C7O2aHcrrFwO0aw,10240
60
- cocotb/libs/embed.exp,sha256=6dL4Pmx1r2iCTHm61zG47kROU9OSdHCYsaM0X9FJFek,1092
61
- cocotb/libs/embed.lib,sha256=6z-RT2aOOCEp-eDFlii9A1km7-b_9rgd9jT16Vx590g,2336
62
- cocotb/libs/gpi.dll,sha256=YWV5z9gyp8vlRryVZf04QoqHwluUmzp1AEXuW56Vpc4,41472
63
- cocotb/libs/gpi.exp,sha256=5M_24kUUkb-it_hm_K8MN6O-0V-Ug7TBGHq1gxDJzLE,20700
64
- cocotb/libs/gpi.lib,sha256=y1ArnLQEXW3PBoUs1QZzmiiSwz6Pkdx_dd0QHwUWF48,33912
65
- cocotb/libs/gpilog.dll,sha256=MLDZ1h2guaPp7vHi6Ch_ACTqFn64QJIB_hJb0ucaL3w,13824
66
- cocotb/libs/gpilog.exp,sha256=O41agcCwESVOhhp8uieKFCxW-Zw4RNOvWMdg-d2BgvU,1644
67
- cocotb/libs/gpilog.lib,sha256=cvyDcCeuH2zWHTe_Lios_FOVZ-WL5XkVodmCIJ7YXkM,3272
68
- cocotb/libs/pygpilog.dll,sha256=mJ90t-Yw8c--wB9NHvOEyQ8ujKtza1kIXo3Kpfho6F0,17408
69
- cocotb/libs/pygpilog.exp,sha256=UGTccYo3yIyaE-HfmMMMkALwNTJjCCf9HY464sC_YNM,1037
70
- cocotb/libs/pygpilog.lib,sha256=_upGmxUHpeyhxDJTjau8VJLAcAhaRiFnc6OvvTuwp5Q,2280
71
- cocotb/share/def/.gitignore,sha256=JYPaHghbqtLFl-9QtOWaAHvoDOhVxEewSYwHgoYYgf8,46
72
- cocotb/share/def/README.md,sha256=dptv3zHQGzMqLt3Zv4XOd5IZeGqQS7Lwcq1XCs3BcR0,380
73
- cocotb/share/def/aldec.def,sha256=ItgxVlRaVuD20jGTN3JpkbHEO8jPfU5XjFlUqDUXzlU,991
74
- cocotb/share/def/ghdl.def,sha256=ETQh5VI72dWSJi_ig5m163GfLrxScYUamt5BjHjoKsY,705
75
- cocotb/share/def/icarus.def,sha256=VRqkgUyzR2sa916Ra56cZVIb4kzbqDlJVWIOc3389qY,698
76
- cocotb/share/def/modelsim.def,sha256=_6VexHTDM7geGOfedUCm6CLRpXS4DrcHUlP_BQxL1Nc,2389
77
- cocotb/share/include/cocotb_utils.h,sha256=v3byzF0uZbks5umkKBe-mgB9J3ShtKwam0_S2vIS10A,4091
78
- cocotb/share/include/embed.h,sha256=Fw0szHcAsXyrK_APXxZE-t0ttqmA8IUC72XXYO5yPl8,2509
79
- cocotb/share/include/exports.h,sha256=RRDg9diMCUUJxdzKX0B6TGmQBNttcoVMBVCCLUUKsrA,677
80
- cocotb/share/include/gpi.h,sha256=FvlF0QQD1rfy_jZ6Q_EnUpymNz7BtrGCgunXV8hg40k,10264
81
- cocotb/share/include/gpi_logging.h,sha256=_Z00YAtMqSr5Mk3WSQ0YjQ5nyPvsxA5vmou1G8lX-B4,10553
82
- cocotb/share/include/py_gpi_logging.h,sha256=zuuDIsKCdLOfUwOMv5EzeQWHuM0PaHzYE1kIH6TSWys,672
83
- cocotb/share/include/vhpi_user_ext.h,sha256=VLXbA-oeO83mL1vR0e4Ye0zMe5ijIaXnvT2FRFgsYDY,654
84
- cocotb/share/include/vpi_user_ext.h,sha256=ofqT24X1KOLeIDowuZxKDYvCTgXAy_RzMz5-_LjSZas,2511
85
- cocotb/share/lib/verilator/verilator.cpp,sha256=DKNqW8ZZV8Xeqsf0WW8YSe1LzT6ay70fSyiI2Lkj29M,4560
86
- cocotb/share/makefiles/Makefile.deprecations,sha256=83TZ1sYlXpVL5erEAr1Y0ZknoX-3vVn5gcwHwaAf30k,428
87
- cocotb/share/makefiles/Makefile.inc,sha256=uOtUkgAFhogYPU1gJ3Y1AKaV6s86EqFfsbLObSY7dKs,7212
88
- cocotb/share/makefiles/Makefile.sim,sha256=mDZPxOw40n1oIYM2wQ-KNHw5Ws9xMW9NSexLWIOxLTM,5412
89
- cocotb/share/makefiles/simulators/Makefile.activehdl,sha256=Y5mq84jkkUo0DFSOwaP99fdv06w8J5fdflOcnYAOHD8,2728
90
- cocotb/share/makefiles/simulators/Makefile.cvc,sha256=wAf8qdHAeXckTixGmF5zAyWicCky5w0H41illxmD-NE,3995
91
- cocotb/share/makefiles/simulators/Makefile.ghdl,sha256=f0EdUOiEjjCONvQawAmmWfigzEUCt9CaheYT3x_tKW0,3627
92
- cocotb/share/makefiles/simulators/Makefile.icarus,sha256=N4n5-azl6YCGYsHwmVwUbN5rQ49Rl0XNt02BTiZYE50,4485
93
- cocotb/share/makefiles/simulators/Makefile.ius,sha256=ikm-N_uvdpTw4cSNbVOXCV59o6ZeaOoXTfpx676CCwc,5090
94
- cocotb/share/makefiles/simulators/Makefile.modelsim,sha256=MQYmRb59nvUkY_f7GXUQVEYXQnU4IWA2-_G0N08StuI,1938
95
- cocotb/share/makefiles/simulators/Makefile.questa,sha256=tSEhEoWm-UN5QzrmVAoPqnQ-sxBXQytVHKBQjRIRXHI,6595
96
- cocotb/share/makefiles/simulators/Makefile.riviera,sha256=GkMwjsvcTKJ-Dq_VFWFFCxio5E9Boo8uAis0TB8dSIk,6074
97
- cocotb/share/makefiles/simulators/Makefile.vcs,sha256=P6t3hpAQoeurusymMmck71vj9p5V5Ordbi6wyghPdHo,3788
98
- cocotb/share/makefiles/simulators/Makefile.verilator,sha256=gi6X6u7QqRNUPOCr_AT1iD6a_EeAGz2y0rkYwVz-2nY,2486
99
- cocotb/share/makefiles/simulators/Makefile.xcelium,sha256=h6Cd_bXncZUfLlLnRbRMBWXxKZDumWVtMM2MscxbheY,5545
100
- cocotb/types/__init__.py,sha256=-M5mR--OWtFZ7Y4pjxB9CF4kmFtroDR7kzz1ba6h0No,1853
101
- cocotb/types/array.py,sha256=JAg5YB84WwERF7S5SK16HvmzCYJgmc5trLATJT3TIqo,11208
102
- cocotb/types/logic.py,sha256=PH5zocv9SpJam9Scc8Cl3uiDtPdtixhbiVLXjJPsPW8,8791
103
- cocotb/types/logic_array.py,sha256=0XpStXNA7qY8FIoamb-dnn-IbzIOXIBoxd0tiWMlhVE,10255
104
- cocotb/types/range.py,sha256=f25nic3X8jpd14nFU61D3izEOT77zPF_txZkWNrZ7N8,6428
105
- pygpi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
106
- pygpi/entry.py,sha256=LDJ8WK-s9nY_A5GEvPUuJTvnGqZvkhOe7i_yGQmqrI0,972
107
- cocotb-1.8.1.dist-info/LICENSE,sha256=oBp8aKF9rhLjG78uW4zxmiVsjA8Viwwdyj3nSbEXpmc,1570
108
- cocotb-1.8.1.dist-info/METADATA,sha256=SJ7jLv7PkVnOSp3OvYGKBO1n6xCUd8YDHU1v4eMw1f8,6789
109
- cocotb-1.8.1.dist-info/WHEEL,sha256=ZX-iFFGFiHZRWPwXowAnONYwAL2TBxDHVbhC1HaSV9Q,97
110
- cocotb-1.8.1.dist-info/entry_points.txt,sha256=kFnPpuolM06cgf3C7fa5JZS4vzADkrxfr0dmBvgtaYg,54
111
- cocotb-1.8.1.dist-info/top_level.txt,sha256=w-hmA_Ca52PldJkt5ya7gRP9tpUXfeJUGLMfXdv5Ez4,393
112
- cocotb-1.8.1.dist-info/RECORD,,