cocotb 1.9.2__cp36-cp36m-win32.whl → 2.0.0rc2__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 (149) hide show
  1. cocotb/_ANSI.py +65 -0
  2. cocotb/__init__.py +81 -327
  3. cocotb/_base_triggers.py +515 -0
  4. cocotb/_bridge.py +186 -0
  5. cocotb/_decorators.py +515 -0
  6. cocotb/_deprecation.py +3 -3
  7. cocotb/_exceptions.py +7 -0
  8. cocotb/_extended_awaitables.py +419 -0
  9. cocotb/_gpi_triggers.py +385 -0
  10. cocotb/_init.py +301 -0
  11. cocotb/_outcomes.py +54 -0
  12. cocotb/_profiling.py +46 -0
  13. cocotb/_py_compat.py +114 -29
  14. cocotb/_scheduler.py +448 -0
  15. cocotb/_test.py +248 -0
  16. cocotb/_test_factory.py +312 -0
  17. cocotb/_test_functions.py +42 -0
  18. cocotb/_typing.py +7 -0
  19. cocotb/_utils.py +274 -0
  20. cocotb/_version.py +3 -7
  21. cocotb/_xunit_reporter.py +66 -0
  22. cocotb/clock.py +353 -108
  23. cocotb/debug.py +24 -0
  24. cocotb/handle.py +1370 -793
  25. cocotb/libs/cocotb.dll +0 -0
  26. cocotb/libs/cocotb.exp +0 -0
  27. cocotb/libs/cocotb.lib +0 -0
  28. cocotb/libs/cocotbfli_modelsim.dll +0 -0
  29. cocotb/libs/cocotbfli_modelsim.exp +0 -0
  30. cocotb/libs/cocotbfli_modelsim.lib +0 -0
  31. cocotb/libs/cocotbutils.dll +0 -0
  32. cocotb/libs/cocotbutils.exp +0 -0
  33. cocotb/libs/cocotbutils.lib +0 -0
  34. cocotb/libs/cocotbvhpi_aldec.dll +0 -0
  35. cocotb/libs/cocotbvhpi_aldec.exp +0 -0
  36. cocotb/libs/cocotbvhpi_aldec.lib +0 -0
  37. cocotb/libs/cocotbvhpi_modelsim.dll +0 -0
  38. cocotb/libs/cocotbvhpi_modelsim.exp +0 -0
  39. cocotb/libs/cocotbvhpi_modelsim.lib +0 -0
  40. cocotb/libs/cocotbvpi_aldec.dll +0 -0
  41. cocotb/libs/cocotbvpi_aldec.exp +0 -0
  42. cocotb/libs/cocotbvpi_aldec.lib +0 -0
  43. cocotb/libs/cocotbvpi_ghdl.dll +0 -0
  44. cocotb/libs/cocotbvpi_ghdl.exp +0 -0
  45. cocotb/libs/cocotbvpi_ghdl.lib +0 -0
  46. cocotb/libs/cocotbvpi_icarus.exp +0 -0
  47. cocotb/libs/cocotbvpi_icarus.lib +0 -0
  48. cocotb/libs/cocotbvpi_icarus.vpl +0 -0
  49. cocotb/libs/cocotbvpi_modelsim.dll +0 -0
  50. cocotb/libs/cocotbvpi_modelsim.exp +0 -0
  51. cocotb/libs/cocotbvpi_modelsim.lib +0 -0
  52. cocotb/libs/embed.dll +0 -0
  53. cocotb/libs/embed.exp +0 -0
  54. cocotb/libs/embed.lib +0 -0
  55. cocotb/libs/gpi.dll +0 -0
  56. cocotb/libs/gpi.exp +0 -0
  57. cocotb/libs/gpi.lib +0 -0
  58. cocotb/libs/gpilog.dll +0 -0
  59. cocotb/libs/gpilog.exp +0 -0
  60. cocotb/libs/gpilog.lib +0 -0
  61. cocotb/libs/pygpilog.dll +0 -0
  62. cocotb/libs/pygpilog.exp +0 -0
  63. cocotb/libs/pygpilog.lib +0 -0
  64. cocotb/logging.py +424 -0
  65. cocotb/queue.py +103 -57
  66. cocotb/regression.py +680 -717
  67. cocotb/result.py +17 -188
  68. cocotb/share/def/modelsim.def +1 -0
  69. cocotb/share/include/cocotb_utils.h +9 -32
  70. cocotb/share/include/embed.h +7 -30
  71. cocotb/share/include/gpi.h +331 -137
  72. cocotb/share/include/gpi_logging.h +221 -142
  73. cocotb/share/include/py_gpi_logging.h +8 -5
  74. cocotb/share/include/vpi_user_ext.h +4 -26
  75. cocotb/share/lib/verilator/verilator.cpp +80 -67
  76. cocotb/simtime.py +230 -0
  77. cocotb/simulator.cp36-win32.exp +0 -0
  78. cocotb/simulator.cp36-win32.lib +0 -0
  79. cocotb/simulator.cp36-win32.pyd +0 -0
  80. cocotb/task.py +478 -213
  81. cocotb/triggers.py +55 -1092
  82. cocotb/types/__init__.py +28 -47
  83. cocotb/types/_abstract_array.py +151 -0
  84. cocotb/types/_array.py +295 -0
  85. cocotb/types/_indexing.py +17 -0
  86. cocotb/types/_logic.py +333 -0
  87. cocotb/types/_logic_array.py +868 -0
  88. cocotb/types/{range.py → _range.py} +47 -48
  89. cocotb/types/_resolve.py +76 -0
  90. cocotb/utils.py +58 -646
  91. {cocotb-1.9.2.dist-info → cocotb-2.0.0rc2.dist-info}/LICENSE +1 -0
  92. cocotb-2.0.0rc2.dist-info/METADATA +48 -0
  93. cocotb-2.0.0rc2.dist-info/RECORD +134 -0
  94. cocotb-2.0.0rc2.dist-info/entry_points.txt +3 -0
  95. {cocotb-1.9.2.dist-info → cocotb-2.0.0rc2.dist-info}/top_level.txt +1 -0
  96. cocotb_tools/_coverage.py +33 -0
  97. cocotb_tools/_vendor/__init__.py +3 -0
  98. cocotb_tools/check_results.py +65 -0
  99. cocotb_tools/combine_results.py +152 -0
  100. cocotb_tools/config.py +241 -0
  101. {cocotb → cocotb_tools}/ipython_support.py +29 -22
  102. cocotb_tools/makefiles/Makefile.deprecations +27 -0
  103. {cocotb/share → cocotb_tools}/makefiles/Makefile.inc +77 -55
  104. {cocotb/share → cocotb_tools}/makefiles/Makefile.sim +16 -33
  105. {cocotb/share → cocotb_tools}/makefiles/simulators/Makefile.activehdl +9 -16
  106. cocotb_tools/makefiles/simulators/Makefile.cvc +61 -0
  107. cocotb_tools/makefiles/simulators/Makefile.dsim +39 -0
  108. {cocotb/share → cocotb_tools}/makefiles/simulators/Makefile.ghdl +13 -42
  109. cocotb_tools/makefiles/simulators/Makefile.icarus +80 -0
  110. cocotb_tools/makefiles/simulators/Makefile.ius +93 -0
  111. cocotb_tools/makefiles/simulators/Makefile.modelsim +9 -0
  112. cocotb_tools/makefiles/simulators/Makefile.nvc +60 -0
  113. cocotb_tools/makefiles/simulators/Makefile.questa +29 -0
  114. cocotb/share/makefiles/simulators/Makefile.questa → cocotb_tools/makefiles/simulators/Makefile.questa-compat +26 -54
  115. cocotb_tools/makefiles/simulators/Makefile.questa-qisqrun +149 -0
  116. {cocotb/share → cocotb_tools}/makefiles/simulators/Makefile.riviera +17 -56
  117. cocotb_tools/makefiles/simulators/Makefile.vcs +65 -0
  118. {cocotb/share → cocotb_tools}/makefiles/simulators/Makefile.verilator +15 -22
  119. {cocotb/share → cocotb_tools}/makefiles/simulators/Makefile.xcelium +20 -52
  120. cocotb_tools/runner.py +1868 -0
  121. cocotb/_sim_versions.py → cocotb_tools/sim_versions.py +16 -21
  122. pygpi/entry.py +34 -18
  123. cocotb/ANSI.py +0 -92
  124. cocotb/binary.py +0 -858
  125. cocotb/config.py +0 -289
  126. cocotb/decorators.py +0 -332
  127. cocotb/log.py +0 -303
  128. cocotb/memdebug.py +0 -35
  129. cocotb/outcomes.py +0 -56
  130. cocotb/runner.py +0 -1400
  131. cocotb/scheduler.py +0 -1099
  132. cocotb/share/makefiles/Makefile.deprecations +0 -12
  133. cocotb/share/makefiles/simulators/Makefile.cvc +0 -94
  134. cocotb/share/makefiles/simulators/Makefile.icarus +0 -111
  135. cocotb/share/makefiles/simulators/Makefile.ius +0 -125
  136. cocotb/share/makefiles/simulators/Makefile.modelsim +0 -32
  137. cocotb/share/makefiles/simulators/Makefile.nvc +0 -64
  138. cocotb/share/makefiles/simulators/Makefile.vcs +0 -98
  139. cocotb/types/array.py +0 -309
  140. cocotb/types/logic.py +0 -292
  141. cocotb/types/logic_array.py +0 -298
  142. cocotb/wavedrom.py +0 -199
  143. cocotb/xunit_reporter.py +0 -80
  144. cocotb-1.9.2.dist-info/METADATA +0 -170
  145. cocotb-1.9.2.dist-info/RECORD +0 -113
  146. cocotb-1.9.2.dist-info/entry_points.txt +0 -3
  147. {cocotb-1.9.2.dist-info → cocotb-2.0.0rc2.dist-info}/WHEEL +0 -0
  148. {cocotb/_vendor → cocotb_tools}/__init__.py +0 -0
  149. {cocotb → cocotb_tools}/_vendor/distutils_version.py +0 -0
@@ -1,170 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: cocotb
3
- Version: 1.9.2
4
- Summary: cocotb is a coroutine based cosimulation library for writing VHDL and Verilog testbenches in Python.
5
- Home-page: https://www.cocotb.org
6
- Author: Chris Higgs, Stuart Hodgson
7
- Maintainer: cocotb contributors
8
- Maintainer-email: cocotb@lists.librecores.org
9
- License: BSD
10
- Project-URL: Bug Tracker, https://github.com/cocotb/cocotb/issues
11
- Project-URL: Source Code, https://github.com/cocotb/cocotb
12
- Project-URL: Documentation, https://docs.cocotb.org
13
- Platform: any
14
- Classifier: Programming Language :: Python :: 3
15
- Classifier: Programming Language :: Python :: 3.6
16
- Classifier: Programming Language :: Python :: 3.7
17
- Classifier: Programming Language :: Python :: 3.8
18
- Classifier: Programming Language :: Python :: 3.9
19
- Classifier: Programming Language :: Python :: 3.10
20
- Classifier: Programming Language :: Python :: 3.11
21
- Classifier: Programming Language :: Python :: 3.12
22
- Classifier: Programming Language :: Python :: 3.13
23
- Classifier: License :: OSI Approved :: BSD License
24
- Classifier: Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)
25
- Classifier: Framework :: cocotb
26
- Requires-Python: >=3.6
27
- Description-Content-Type: text/markdown
28
- License-File: LICENSE
29
- Requires-Dist: find-libpython
30
- Provides-Extra: bus
31
- Requires-Dist: cocotb-bus ; extra == 'bus'
32
-
33
- **cocotb** is a coroutine based cosimulation library for writing VHDL and Verilog testbenches in Python.
34
-
35
- [![Documentation Status](https://readthedocs.org/projects/cocotb/badge/?version=latest)](https://docs.cocotb.org/en/latest/)
36
- [![CI](https://github.com/cocotb/cocotb/actions/workflows/build-test-dev.yml/badge.svg?branch=master)](https://github.com/cocotb/cocotb/actions/workflows/build-test-dev.yml)
37
- [![PyPI](https://img.shields.io/pypi/dm/cocotb.svg?label=PyPI%20downloads)](https://pypi.org/project/cocotb/)
38
- [![Gitpod Ready-to-Code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/cocotb/cocotb)
39
- [![codecov](https://codecov.io/gh/cocotb/cocotb/branch/master/graph/badge.svg)](https://codecov.io/gh/cocotb/cocotb)
40
-
41
- * Read the [documentation](https://docs.cocotb.org)
42
- * Get involved:
43
- * [Raise a bug / request an enhancement](https://github.com/cocotb/cocotb/issues/new) (Requires a GitHub account)
44
- * [Join the Gitter chat room](https://gitter.im/cocotb/Lobby)
45
-
46
- ## Installation
47
-
48
- The current stable version of cocotb requires:
49
-
50
- - Python 3.6+
51
- - GNU Make 3+
52
- - An HDL simulator (such as [Icarus Verilog](https://docs.cocotb.org/en/stable/simulator_support.html#icarus-verilog),
53
- [Verilator](https://docs.cocotb.org/en/stable/simulator_support.html#verilator),
54
- [GHDL](https://docs.cocotb.org/en/stable/simulator_support.html#ghdl) or
55
- [other simulator](https://docs.cocotb.org/en/stable/simulator_support.html))
56
-
57
- After installing these dependencies, the latest stable version 1.x of cocotb can be installed with pip.
58
-
59
- ```command
60
- pip install 'cocotb == 1.*'
61
- ```
62
-
63
- For more details on installation, including prerequisites,
64
- see [the documentation](https://docs.cocotb.org/en/stable/install.html).
65
-
66
- For details on how to install the *development* version of cocotb,
67
- see [the preliminary documentation of the future release](https://docs.cocotb.org/en/latest/install_devel.html#install-devel).
68
-
69
- **!!! Bus and Testbenching Components !!!**
70
- The reusable bus interfaces and testbenching components have recently been moved to the [cocotb-bus](https://github.com/cocotb/cocotb-bus) package.
71
- You can easily install these at the same time as cocotb by adding the `bus` extra install: `pip install cocotb[bus]`.
72
-
73
- ## Usage
74
-
75
- As a first trivial introduction to cocotb, the following example "tests" a flip-flop.
76
-
77
- First, we need a hardware design which we can test. For this example, create a file `dff.sv` with SystemVerilog code for a simple [D flip-flop](https://en.wikipedia.org/wiki/Flip-flop_(electronics)#D_flip-flop). You could also use any other language a [cocotb-supported simulator](https://docs.cocotb.org/en/stable/simulator_support.html) understands, e.g. VHDL.
78
-
79
- ```systemverilog
80
- // dff.sv
81
-
82
- `timescale 1us/1ns
83
-
84
- module dff (
85
- output logic q,
86
- input logic clk, d
87
- );
88
-
89
- always @(posedge clk) begin
90
- q <= d;
91
- end
92
-
93
- endmodule
94
- ```
95
-
96
- An example of a simple randomized cocotb testbench:
97
-
98
- ```python
99
- # test_dff.py
100
-
101
- import random
102
-
103
- import cocotb
104
- from cocotb.clock import Clock
105
- from cocotb.triggers import RisingEdge
106
- from cocotb.types import LogicArray
107
-
108
- @cocotb.test()
109
- async def dff_simple_test(dut):
110
- """Test that d propagates to q"""
111
-
112
- # Assert initial output is unknown
113
- assert LogicArray(dut.q.value) == LogicArray("X")
114
- # Set initial input value to prevent it from floating
115
- dut.d.value = 0
116
-
117
- clock = Clock(dut.clk, 10, units="us") # Create a 10us period clock on port clk
118
- # Start the clock. Start it low to avoid issues on the first RisingEdge
119
- cocotb.start_soon(clock.start(start_high=False))
120
-
121
- # Synchronize with the clock. This will regisiter the initial `d` value
122
- await RisingEdge(dut.clk)
123
- expected_val = 0 # Matches initial input value
124
- for i in range(10):
125
- val = random.randint(0, 1)
126
- dut.d.value = val # Assign the random value val to the input port d
127
- await RisingEdge(dut.clk)
128
- assert dut.q.value == expected_val, f"output q was incorrect on the {i}th cycle"
129
- expected_val = val # Save random value for next RisingEdge
130
-
131
- # Check the final input on the next clock
132
- await RisingEdge(dut.clk)
133
- assert dut.q.value == expected_val, "output q was incorrect on the last cycle"
134
- ```
135
-
136
- A simple Makefile:
137
-
138
- ```make
139
- # Makefile
140
-
141
- TOPLEVEL_LANG = verilog
142
- VERILOG_SOURCES = $(shell pwd)/dff.sv
143
- TOPLEVEL = dff
144
- MODULE = test_dff
145
-
146
- include $(shell cocotb-config --makefiles)/Makefile.sim
147
- ```
148
-
149
- In order to run the test with Icarus Verilog, execute:
150
-
151
- ```command
152
- make SIM=icarus
153
- ```
154
-
155
- [![asciicast](https://asciinema.org/a/317220.svg)](https://asciinema.org/a/317220)
156
-
157
- For more information please see the [cocotb documentation](https://docs.cocotb.org/)
158
- and [our wiki](https://github.com/cocotb/cocotb/wiki).
159
-
160
- ## Tutorials, examples and related projects
161
-
162
- * the tutorial section [in the official documentation](https://docs.cocotb.org/)
163
- * [cocotb-bus](https://github.com/cocotb/cocotb-bus) for pre-packaged testbenching tools and reusable bus interfaces.
164
- * [cocotb-based USB 1.1 test suite](https://github.com/antmicro/usb-test-suite-build) for FPGA IP, with testbenches for a variety of open source USB cores
165
- * [`cocotb-coverage`](https://github.com/mciepluc/cocotb-coverage), an extension for Functional Coverage and Constrained Randomization
166
- * [`uvm-python`](https://github.com/tpoikela/uvm-python), an almost 1:1 port of UVM 1.2 to Python
167
- * our wiki [on extension modules](https://github.com/cocotb/cocotb/wiki/Further-Resources#extension-modules-cocotbext)
168
- * the list of [GitHub projects depending on cocotb](https://github.com/cocotb/cocotb/network/dependents)
169
-
170
-
@@ -1,113 +0,0 @@
1
- cocotb/ANSI.py,sha256=BXtYyxla8R_bHRasjDyZGibYDNoh2deY8Snyre8YT54,3458
2
- cocotb/__init__.py,sha256=Lo_Szzkb3wjzrJriMMKETGgJ4uGOoBiQFzDlJ15S69U,12181
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=5vOr_pg054-fsZswF3QrFBpkMzQTl6K8nVYJ7LhXSy8,303
7
- cocotb/binary.py,sha256=8hmcvOGTbfbuigXtmqv-XJLGswL7eIcwtle4ZZzTqRU,28101
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=QMaNkW9SP09KyUGnIQMQ3UVO1BEeW5Q9HQsG2XKiRrc,33678
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=grADQEhIB-NwRvWH_KeOw0GhRoklgeDD8zQQIRA1fzA,738
22
- cocotb/simulator.cp36-win32.lib,sha256=NSQwjoOhTEELXNEM67_F5cU7IhS86sTGdWEAublWVKM,1982
23
- cocotb/simulator.cp36-win32.pyd,sha256=B4pQKFU9fvNIqMeIJ3dYW39LCNrMnnBF4U7cSwmIFN4,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=La-yFEVNnGXdO8maeJMdu6POqPQOU0GPahU5V-EMfIo,25088
33
- cocotb/libs/cocotb.exp,sha256=lvGTBXv2fs1K9smbX_QSbdIcsGAbtfdBBflzd88fZ-0,1105
34
- cocotb/libs/cocotb.lib,sha256=2xH6_e0zXbrLGpRLXYURGH7biFi-E9oP9NwelhkstM4,2372
35
- cocotb/libs/cocotbfli_modelsim.dll,sha256=f4hp9aMD7w9HOEx6Fc0FnbSInAnu04RNGuEw8NVP6yw,82432
36
- cocotb/libs/cocotbfli_modelsim.exp,sha256=L28pGx06RO2EqwMifW-BO_BM4-FKh8l0sHb60rfFxs0,867
37
- cocotb/libs/cocotbfli_modelsim.lib,sha256=_LCQHjVVEsnCS50WEEroe0xvk1BCNk3z7zhYNJ2NSsI,2176
38
- cocotb/libs/cocotbutils.dll,sha256=hLalrTo_-tMvfQ2s4ICubHbj61V_o8NsG30KenJ5ieo,10240
39
- cocotb/libs/cocotbutils.exp,sha256=qKFqlCKQu44NUSbvkT81zAAPzI5Z5Km8qblz7rd1LXA,968
40
- cocotb/libs/cocotbutils.lib,sha256=HsdiR-F3RintiDbu0CQXjAEeASIxoBRDX2R-LtwlJu4,2154
41
- cocotb/libs/cocotbvhpi_aldec.dll,sha256=yqZfh5Sz9Od0_yjIvgyDrY-RZi_ygoOmW4pR8Z738zg,76288
42
- cocotb/libs/cocotbvhpi_aldec.exp,sha256=r65z3TVfyZZbcQwolVGrxPDt90zBG3BxWl-_CCKhSjw,1067
43
- cocotb/libs/cocotbvhpi_aldec.lib,sha256=vWouEC3u4T4XB-LRpLzOjMIEwIAMI5TBkmzj566R1C4,2448
44
- cocotb/libs/cocotbvhpi_modelsim.dll,sha256=M2IQpFMfVXxCCdh9OcV7bw4FoS6DmS9mamPIGDydX7k,76288
45
- cocotb/libs/cocotbvhpi_modelsim.exp,sha256=T03fyWrd4RYCDTm9h7MtYj0qv1b7WJYPQaNNyUqbzro,1074
46
- cocotb/libs/cocotbvhpi_modelsim.lib,sha256=mUX6byF-vNN5LmVEYAdSQRSqp7MJM183ZKeIYJgYhbA,2492
47
- cocotb/libs/cocotbvpi_aldec.dll,sha256=TmZgSrf2vgcNEnC4D8wEiubAqIIRP_xNyi665KXJekc,61952
48
- cocotb/libs/cocotbvpi_aldec.exp,sha256=2g5gkjE1JDZ5o1xC8ufpu8w0zpc2_MoSiHlq8FmHOF8,1062
49
- cocotb/libs/cocotbvpi_aldec.lib,sha256=qTM5sqWxFlFfOxoO9Ul5BVFBvXtyDLIsRDopl0yDQDQ,2428
50
- cocotb/libs/cocotbvpi_ghdl.dll,sha256=7gIyMHmZASm-rjpXFuifzveNSOhV1FxhRPJ_zwLDuf0,61952
51
- cocotb/libs/cocotbvpi_ghdl.exp,sha256=YWVtwP7rOe1KiQ68jhiCfNA7kCpLK7247SO0U8iCfIk,1061
52
- cocotb/libs/cocotbvpi_ghdl.lib,sha256=VlQEIPlp0wDKcjGO7UTqlWOZfc8ctNIczUGNiS4dBbk,2412
53
- cocotb/libs/cocotbvpi_icarus.exp,sha256=3fZtT3i6koUXxMqpICgAvZSuYA6SmqtvTtNXqAghW80,1065
54
- cocotb/libs/cocotbvpi_icarus.lib,sha256=wW99qnEZaopG_64RsGl8m5ABY8Re7MP70uY7IQ-bfOE,2442
55
- cocotb/libs/cocotbvpi_icarus.vpl,sha256=g8BjljKJaQn1RmcJvwnI8qKLSnQWxYd7bo8AW-URzZU,61952
56
- cocotb/libs/cocotbvpi_modelsim.dll,sha256=DAO75vz_IK_Nk02K0OVjOWsCSsCrTVsv_ZfcpFttpik,61952
57
- cocotb/libs/cocotbvpi_modelsim.exp,sha256=ByNVb0Ja_EMgTYIZQlhd5TUm9GjFlYMtsNviKGRkwKQ,1069
58
- cocotb/libs/cocotbvpi_modelsim.lib,sha256=uz3IKNFqGxeZg_LR5K0qUvDK-ysQuvsoxveMlr3VFr0,2472
59
- cocotb/libs/embed.dll,sha256=ADBI0_kemJ64rzjlO-cPUfxVgNZJHabeXFdhjOVZpOQ,10752
60
- cocotb/libs/embed.exp,sha256=ttPZxKtjHXnpzlecao5B79PYt__nkwN53BEcCvCgGLc,1092
61
- cocotb/libs/embed.lib,sha256=FdBjLuDALT1xrtC1MJv0ik9gEO96O4FeYkkXbPteOQA,2336
62
- cocotb/libs/gpi.dll,sha256=dy33IyzrVNCgixsNXuOoninvOEoELDF1IahNIxL75vA,41472
63
- cocotb/libs/gpi.exp,sha256=e_iLZ_TWc2AZvbOg85sBffwhrWAizFlhzNlOtkWtoHU,20700
64
- cocotb/libs/gpi.lib,sha256=ZZHd88sh_fO5DMV-fLKeDPSVSAgD6-MTOLzO9jaZZ0A,33912
65
- cocotb/libs/gpilog.dll,sha256=BS03KX5xYd1tBSULL8dbEPaGcCPTruRLOE980ai1RMo,13824
66
- cocotb/libs/gpilog.exp,sha256=O_qpZLR134LqBTqbXwXv7xnNTgxM1xJWLM1KLIlpQyQ,1644
67
- cocotb/libs/gpilog.lib,sha256=6Lj8nmF86mVY7FD4Lbjwg_D1CojGMqJFeHoQRd2zBqE,3272
68
- cocotb/libs/pygpilog.dll,sha256=jg9QZqL3ANRZc03AEMhYFZj2Rao_FDAfqvcP6cKtXOI,16896
69
- cocotb/libs/pygpilog.exp,sha256=CpAmgtO6nJns0W7XqLtXsgsd7M0tOvyA6q3asv16gko,1037
70
- cocotb/libs/pygpilog.lib,sha256=rwAkKjB7X4VKywjZwVSvtI0B3IX0F--oxrCK_BmY1XA,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=YSgErhCJUqKkuVIYHZhd9wNVASCwbsMwSzxrhbjolL4,5930
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=_gw5TqzZma_D02yzBGsZbTqXWF6_nlIhRFHEmstVcS8,2884
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=mIpdGq2safFnmkzAnmnErco4ZwMW_8mxui_cSs-2dbE,6732
97
- cocotb/share/makefiles/simulators/Makefile.riviera,sha256=vYlPUC1fl5eSxklyBG9cCFBaKSYId1B3nHsSTFjs200,7060
98
- cocotb/share/makefiles/simulators/Makefile.vcs,sha256=nT_Qang2qJg7XOF2ljeBpZSmfcw3mTu50LKz6Ltu2jI,3843
99
- cocotb/share/makefiles/simulators/Makefile.verilator,sha256=f6yGtKg1_auBgtjqrLqf2XpbwOSD8nWwlPG6Amed-2A,2710
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.2.dist-info/LICENSE,sha256=oBp8aKF9rhLjG78uW4zxmiVsjA8Viwwdyj3nSbEXpmc,1570
109
- cocotb-1.9.2.dist-info/METADATA,sha256=2Ck7puyZ_ve4nMB4UbNHBqGYTqUD2Y8fxT_XoKJn_lg,6904
110
- cocotb-1.9.2.dist-info/WHEEL,sha256=ZX-iFFGFiHZRWPwXowAnONYwAL2TBxDHVbhC1HaSV9Q,97
111
- cocotb-1.9.2.dist-info/entry_points.txt,sha256=kFnPpuolM06cgf3C7fa5JZS4vzADkrxfr0dmBvgtaYg,54
112
- cocotb-1.9.2.dist-info/top_level.txt,sha256=w-hmA_Ca52PldJkt5ya7gRP9tpUXfeJUGLMfXdv5Ez4,393
113
- cocotb-1.9.2.dist-info/RECORD,,
@@ -1,3 +0,0 @@
1
- [console_scripts]
2
- cocotb-config = cocotb.config:main
3
-
File without changes
File without changes