cocotb 1.9.1__cp312-cp312-win32.whl → 1.9.2__cp312-cp312-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 (63) hide show
  1. cocotb/__init__.py +20 -3
  2. cocotb/_version.py +1 -1
  3. cocotb/libs/cocotb.dll +0 -0
  4. cocotb/libs/cocotb.exp +0 -0
  5. cocotb/libs/cocotb.lib +0 -0
  6. cocotb/libs/cocotbfli_modelsim.dll +0 -0
  7. cocotb/libs/cocotbfli_modelsim.exp +0 -0
  8. cocotb/libs/cocotbfli_modelsim.lib +0 -0
  9. cocotb/libs/cocotbutils.dll +0 -0
  10. cocotb/libs/cocotbutils.exp +0 -0
  11. cocotb/libs/cocotbutils.lib +0 -0
  12. cocotb/libs/cocotbvhpi_aldec.dll +0 -0
  13. cocotb/libs/cocotbvhpi_aldec.exp +0 -0
  14. cocotb/libs/cocotbvhpi_aldec.lib +0 -0
  15. cocotb/libs/cocotbvhpi_modelsim.dll +0 -0
  16. cocotb/libs/cocotbvhpi_modelsim.exp +0 -0
  17. cocotb/libs/cocotbvhpi_modelsim.lib +0 -0
  18. cocotb/libs/cocotbvpi_aldec.dll +0 -0
  19. cocotb/libs/cocotbvpi_aldec.exp +0 -0
  20. cocotb/libs/cocotbvpi_aldec.lib +0 -0
  21. cocotb/libs/cocotbvpi_ghdl.dll +0 -0
  22. cocotb/libs/cocotbvpi_ghdl.exp +0 -0
  23. cocotb/libs/cocotbvpi_ghdl.lib +0 -0
  24. cocotb/libs/cocotbvpi_icarus.exp +0 -0
  25. cocotb/libs/cocotbvpi_icarus.lib +0 -0
  26. cocotb/libs/cocotbvpi_icarus.vpl +0 -0
  27. cocotb/libs/cocotbvpi_modelsim.dll +0 -0
  28. cocotb/libs/cocotbvpi_modelsim.exp +0 -0
  29. cocotb/libs/cocotbvpi_modelsim.lib +0 -0
  30. cocotb/libs/embed.dll +0 -0
  31. cocotb/libs/embed.exp +0 -0
  32. cocotb/libs/embed.lib +0 -0
  33. cocotb/libs/gpi.dll +0 -0
  34. cocotb/libs/gpi.exp +0 -0
  35. cocotb/libs/gpi.lib +0 -0
  36. cocotb/libs/gpilog.dll +0 -0
  37. cocotb/libs/gpilog.exp +0 -0
  38. cocotb/libs/gpilog.lib +0 -0
  39. cocotb/libs/pygpilog.dll +0 -0
  40. cocotb/libs/pygpilog.exp +0 -0
  41. cocotb/libs/pygpilog.lib +0 -0
  42. cocotb/regression.py +1 -5
  43. cocotb/share/def/aldec.exp +0 -0
  44. cocotb/share/def/aldec.lib +0 -0
  45. cocotb/share/def/ghdl.exp +0 -0
  46. cocotb/share/def/ghdl.lib +0 -0
  47. cocotb/share/def/icarus.exp +0 -0
  48. cocotb/share/def/icarus.lib +0 -0
  49. cocotb/share/def/modelsim.exp +0 -0
  50. cocotb/share/def/modelsim.lib +0 -0
  51. cocotb/share/makefiles/simulators/Makefile.activehdl +10 -3
  52. cocotb/share/makefiles/simulators/Makefile.questa +12 -9
  53. cocotb/share/makefiles/simulators/Makefile.riviera +15 -9
  54. cocotb/simulator.cp312-win32.exp +0 -0
  55. cocotb/simulator.cp312-win32.lib +0 -0
  56. cocotb/simulator.cp312-win32.pyd +0 -0
  57. {cocotb-1.9.1.dist-info → cocotb-1.9.2.dist-info}/METADATA +3 -1
  58. cocotb-1.9.2.dist-info/RECORD +121 -0
  59. {cocotb-1.9.1.dist-info → cocotb-1.9.2.dist-info}/WHEEL +1 -1
  60. cocotb-1.9.1.dist-info/RECORD +0 -121
  61. {cocotb-1.9.1.dist-info → cocotb-1.9.2.dist-info}/LICENSE +0 -0
  62. {cocotb-1.9.1.dist-info → cocotb-1.9.2.dist-info}/entry_points.txt +0 -0
  63. {cocotb-1.9.1.dist-info → cocotb-1.9.2.dist-info}/top_level.txt +0 -0
cocotb/__init__.py CHANGED
@@ -313,7 +313,13 @@ def _initialise_testbench_(argv_):
313
313
  top = cocotb.handle.SimHandle(handle)
314
314
 
315
315
  global regression_manager
316
- regression_manager = RegressionManager.from_discovery(top)
316
+ try:
317
+ regression_manager = RegressionManager.from_discovery(top)
318
+ except BaseException as e:
319
+ log.error(e)
320
+ simulator.stop_simulator()
321
+ _stop_library_coverage()
322
+ return # pragma: no cover
317
323
 
318
324
  global scheduler
319
325
  scheduler = Scheduler(handle_result=regression_manager._handle_result)
@@ -322,6 +328,13 @@ def _initialise_testbench_(argv_):
322
328
  regression_manager._execute()
323
329
 
324
330
 
331
+ def _stop_library_coverage() -> None:
332
+ if _library_coverage is not None:
333
+ # TODO: move this once we have normal shutdown behavior to _sim_event
334
+ _library_coverage.stop()
335
+ _library_coverage.save() # pragma: no cover
336
+
337
+
325
338
  def _sim_event(message):
326
339
  """Function that can be called externally to signal an event."""
327
340
  from cocotb.result import SimFailure
@@ -329,8 +342,12 @@ def _sim_event(message):
329
342
  # We simply return here as the simulator will exit
330
343
  # so no cleanup is needed
331
344
  msg = f"Failing test at simulator request before test run completion: {message}"
332
- scheduler.log.error(msg)
333
- scheduler._finish_scheduler(SimFailure(msg))
345
+ if scheduler is not None:
346
+ scheduler.log.error(msg)
347
+ scheduler._finish_scheduler(SimFailure(msg))
348
+ else:
349
+ log.error(msg)
350
+ _stop_library_coverage()
334
351
 
335
352
 
336
353
  @deprecated("This function is now private")
cocotb/_version.py CHANGED
@@ -5,4 +5,4 @@
5
5
  # 1) we don't load dependencies by storing it in __init__.py
6
6
  # 2) we can import it in setup.py for the same reason
7
7
  # 3) we can import it into your module
8
- __version__ = "1.9.1"
8
+ __version__ = "1.9.2"
cocotb/libs/cocotb.dll CHANGED
Binary file
cocotb/libs/cocotb.exp CHANGED
Binary file
cocotb/libs/cocotb.lib CHANGED
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
cocotb/libs/embed.dll CHANGED
Binary file
cocotb/libs/embed.exp CHANGED
Binary file
cocotb/libs/embed.lib CHANGED
Binary file
cocotb/libs/gpi.dll CHANGED
Binary file
cocotb/libs/gpi.exp CHANGED
Binary file
cocotb/libs/gpi.lib CHANGED
Binary file
cocotb/libs/gpilog.dll CHANGED
Binary file
cocotb/libs/gpilog.exp CHANGED
Binary file
cocotb/libs/gpilog.lib CHANGED
Binary file
cocotb/libs/pygpilog.dll CHANGED
Binary file
cocotb/libs/pygpilog.exp CHANGED
Binary file
cocotb/libs/pygpilog.lib CHANGED
Binary file
cocotb/regression.py CHANGED
@@ -204,7 +204,6 @@ class RegressionManager:
204
204
  except Exception as E:
205
205
  _logger.critical("Failed to import module %s: %s", module_name, E)
206
206
  _logger.info('MODULE variable was "%s"', ".".join(modules))
207
- _logger.info("Traceback: ")
208
207
  _logger.info(traceback.format_exc())
209
208
  raise
210
209
 
@@ -304,13 +303,10 @@ class RegressionManager:
304
303
  self.log.info("Writing coverage data")
305
304
  self._cov.save()
306
305
  self._cov.html_report()
307
- if cocotb._library_coverage is not None:
308
- # TODO: move this once we have normal shutdown behavior to _sim_event
309
- cocotb._library_coverage.stop()
310
- cocotb._library_coverage.save()
311
306
 
312
307
  # Setup simulator finalization
313
308
  simulator.stop_simulator()
309
+ cocotb._stop_library_coverage()
314
310
 
315
311
  @deprecated("This method is now private.")
316
312
  def next_test(self) -> Optional[Test]:
Binary file
Binary file
cocotb/share/def/ghdl.exp CHANGED
Binary file
cocotb/share/def/ghdl.lib CHANGED
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -22,8 +22,15 @@ ALOG_ARGS += $(COMPILE_ARGS)
22
22
  ACOM_ARGS += $(COMPILE_ARGS)
23
23
  ASIM_ARGS += $(SIM_ARGS)
24
24
 
25
- RTL_LIBRARY ?= work
26
25
  ALOG_ARGS += +define+COCOTB_SIM -dbg
26
+
27
+ ifdef RTL_LIBRARY
28
+ $(warning Using RTL_LIBRARY is deprecated, please use TOPLEVEL_LIBRARY instead.)
29
+ TOPLEVEL_LIBRARY ?= $(RTL_LIBRARY)
30
+ else
31
+ TOPLEVEL_LIBRARY ?= work
32
+ endif
33
+
27
34
  ACOM_ARGS += -dbg
28
35
 
29
36
  GPI_EXTRA:=
@@ -46,8 +53,8 @@ endif
46
53
 
47
54
  # Create a DO script (Tcl-like but not fully compatible) based on the list of $(VERILOG_SOURCES)
48
55
  $(SIM_BUILD)/runsim.do : $(VERILOG_SOURCES) $(VHDL_SOURCES) | $(SIM_BUILD)
49
- @echo "alib $(RTL_LIBRARY)" > $@
50
- @echo "set worklib $(RTL_LIBRARY)" >> $@
56
+ @echo "alib $(TOPLEVEL_LIBRARY)" > $@
57
+ @echo "set worklib $(TOPLEVEL_LIBRARY)" >> $@
51
58
  ifneq ($(VHDL_SOURCES),)
52
59
  @echo "acom $(ACOM_ARGS) $(call to_tcl_path,$(VHDL_SOURCES))" >> $@
53
60
  endif
@@ -42,9 +42,12 @@ ifeq (, $(CMD))
42
42
  $(error Unable to locate command >$(CMD_BIN)<)
43
43
  endif
44
44
 
45
- RTL_LIBRARY ?= work
46
-
47
- TOPLEVEL_LIBRARY ?= $(RTL_LIBRARY)
45
+ ifdef RTL_LIBRARY
46
+ $(warning Using RTL_LIBRARY is deprecated, please use TOPLEVEL_LIBRARY instead.)
47
+ TOPLEVEL_LIBRARY ?= $(RTL_LIBRARY)
48
+ else
49
+ TOPLEVEL_LIBRARY ?= work
50
+ endif
48
51
  TOPLEVEL := "$(TOPLEVEL_LIBRARY).$(TOPLEVEL)"
49
52
 
50
53
  ifndef VLOG_ARGS
@@ -127,19 +130,19 @@ $(SIM_BUILD)/runsim.do : $(VHDL_SOURCES) $(VERILOG_SOURCES) $(CUSTOM_COMPILE_DEP
127
130
  @echo "}" >> $@
128
131
  @echo "vmap -c" >> $@
129
132
  $(foreach LIB, $(VHDL_LIB_ORDER), $(make_lib))
130
- @echo "if [file exists $(SIM_BUILD)/$(RTL_LIBRARY)] {vdel -lib $(SIM_BUILD)/$(RTL_LIBRARY) -all}" >> $@
131
- @echo "vlib $(SIM_BUILD)/$(RTL_LIBRARY)" >> $@
132
- @echo "vmap $(RTL_LIBRARY) $(SIM_BUILD)/$(RTL_LIBRARY)" >> $@
133
+ @echo "if [file exists $(SIM_BUILD)/$(TOPLEVEL_LIBRARY)] {vdel -lib $(SIM_BUILD)/$(TOPLEVEL_LIBRARY) -all}" >> $@
134
+ @echo "vlib $(SIM_BUILD)/$(TOPLEVEL_LIBRARY)" >> $@
135
+ @echo "vmap $(TOPLEVEL_LIBRARY) $(SIM_BUILD)/$(TOPLEVEL_LIBRARY)" >> $@
133
136
  ifneq ($(VHDL_SOURCES),)
134
- @echo "vcom -work $(RTL_LIBRARY) $(VCOM_ARGS) $(call to_tcl_path,$(VHDL_SOURCES))" >> $@
137
+ @echo "vcom -work $(TOPLEVEL_LIBRARY) $(VCOM_ARGS) $(call to_tcl_path,$(VHDL_SOURCES))" >> $@
135
138
  endif
136
139
  ifneq ($(VERILOG_SOURCES),)
137
- @echo "vlog -work $(RTL_LIBRARY) +define+COCOTB_SIM -sv $(VLOG_ARGS) $(EXTRA_ARGS) $(call to_tcl_path,$(VERILOG_SOURCES))" >> $@
140
+ @echo "vlog -work $(TOPLEVEL_LIBRARY) +define+COCOTB_SIM -sv $(VLOG_ARGS) $(EXTRA_ARGS) $(call to_tcl_path,$(VERILOG_SOURCES))" >> $@
138
141
  endif
139
142
  ifdef SCRIPT_FILE
140
143
  @echo "do $(SCRIPT_FILE)" >> $@
141
144
  endif
142
- @echo "vsim $(VSIM_ARGS) $(EXTRA_ARGS) $(PLUSARGS) $(SIM_BUILD)/$(TOPLEVEL)" >> $@
145
+ @echo "vsim $(VSIM_ARGS) $(EXTRA_ARGS) $(PLUSARGS) $(TOPLEVEL)" >> $@
143
146
  ifeq ($(WAVES),1)
144
147
  @echo "log -recursive /*" >> $@
145
148
  endif
@@ -69,9 +69,15 @@ ASIM_ARGS += $(SIM_ARGS)
69
69
  # Plusargs need to be passed to ASIM command not vsimsa
70
70
  ASIM_ARGS += $(PLUSARGS)
71
71
 
72
- RTL_LIBRARY ?= work
73
72
  ALOG_ARGS += +define+COCOTB_SIM
74
73
 
74
+ ifdef RTL_LIBRARY
75
+ $(warning Using RTL_LIBRARY is deprecated, please use TOPLEVEL_LIBRARY instead.)
76
+ TOPLEVEL_LIBRARY ?= $(RTL_LIBRARY)
77
+ else
78
+ TOPLEVEL_LIBRARY ?= work
79
+ endif
80
+
75
81
  # Pass the VPI library to the Verilog compilation to get extended checking.
76
82
  ALOG_ARGS += -pli $(shell cocotb-config --lib-name-path vpi riviera)
77
83
 
@@ -127,15 +133,15 @@ $(SIM_BUILD)/runsim.tcl : $(VERILOG_SOURCES) $(VHDL_SOURCES) | $(SIM_BUILD)
127
133
  @echo "@if [string length [array get env LICENSE_QUEUE]] {" >> $@
128
134
  @echo " set LICENSE_QUEUE $$::env(LICENSE_QUEUE)" >> $@
129
135
  @echo "}" >> $@
130
- @echo "if [file exists $(SIM_BUILD)/$(RTL_LIBRARY)] {adel -lib $(SIM_BUILD)/$(RTL_LIBRARY) -all}" >> $@;
131
- @echo "alib $(SIM_BUILD)/$(RTL_LIBRARY)" >> $@
132
- @echo "amap $(RTL_LIBRARY) $(SIM_BUILD)/$(RTL_LIBRARY)" >> $@;
133
- @echo "set worklib $(RTL_LIBRARY)" >> $@;
136
+ @echo "if [file exists $(SIM_BUILD)/$(TOPLEVEL_LIBRARY)] {adel -lib $(SIM_BUILD)/$(TOPLEVEL_LIBRARY) -all}" >> $@;
137
+ @echo "alib $(SIM_BUILD)/$(TOPLEVEL_LIBRARY)" >> $@
138
+ @echo "amap $(TOPLEVEL_LIBRARY) $(SIM_BUILD)/$(TOPLEVEL_LIBRARY)" >> $@;
139
+ @echo "set worklib $(TOPLEVEL_LIBRARY)" >> $@;
134
140
  ifneq ($(VHDL_SOURCES),)
135
- @echo "acom -work $(RTL_LIBRARY) $(ACOM_ARGS) $(call to_tcl_path,$(VHDL_SOURCES))" >> $@
141
+ @echo "acom -work $(TOPLEVEL_LIBRARY) $(ACOM_ARGS) $(call to_tcl_path,$(VHDL_SOURCES))" >> $@
136
142
  endif
137
143
  ifneq ($(VERILOG_SOURCES),)
138
- @echo "alog -work $(RTL_LIBRARY) $(ALOG_ARGS) $(call to_tcl_path,$(VERILOG_SOURCES))" >> $@
144
+ @echo "alog -work $(TOPLEVEL_LIBRARY) $(ALOG_ARGS) $(call to_tcl_path,$(VERILOG_SOURCES))" >> $@
139
145
  endif
140
146
  ifdef SCRIPT_FILE
141
147
  @echo "do $(SCRIPT_FILE)" >> $@
@@ -154,8 +160,8 @@ else
154
160
  @echo "run -all" >> $@
155
161
  @echo "endsim" >> $@
156
162
  ifeq ($(COVERAGE),1)
157
- @echo "acdb report -cov $(COVERAGE_TYPES) -db $(RTL_LIBRARY).acdb -html -o coverage/acdb_report.html" >> $@
158
- @echo "acdb report -cov $(COVERAGE_TYPES) -db $(RTL_LIBRARY).acdb -txt -o coverage/acdb_report.txt" >> $@
163
+ @echo "acdb report -cov $(COVERAGE_TYPES) -db $(TOPLEVEL_LIBRARY).acdb -html -o coverage/acdb_report.html" >> $@
164
+ @echo "acdb report -cov $(COVERAGE_TYPES) -db $(TOPLEVEL_LIBRARY).acdb -txt -o coverage/acdb_report.txt" >> $@
159
165
  endif
160
166
  @echo "exit" >> $@
161
167
  endif
Binary file
Binary file
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cocotb
3
- Version: 1.9.1
3
+ Version: 1.9.2
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
@@ -18,6 +18,8 @@ Classifier: Programming Language :: Python :: 3.8
18
18
  Classifier: Programming Language :: Python :: 3.9
19
19
  Classifier: Programming Language :: Python :: 3.10
20
20
  Classifier: Programming Language :: Python :: 3.11
21
+ Classifier: Programming Language :: Python :: 3.12
22
+ Classifier: Programming Language :: Python :: 3.13
21
23
  Classifier: License :: OSI Approved :: BSD License
22
24
  Classifier: Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)
23
25
  Classifier: Framework :: cocotb
@@ -0,0 +1,121 @@
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.cp312-win32.exp,sha256=N13Oz540v69F2uVCmIo3vsNNqVLxSNnVTZiU7xphI7E,749
22
+ cocotb/simulator.cp312-win32.lib,sha256=LP89_MaNpIi3YEHMz7NjqI4uFARFZ1pQempx0eUVeT0,1992
23
+ cocotb/simulator.cp312-win32.pyd,sha256=FzwxMFbq4ivBVhMaGB-TPFVaUD92uEolvkaTTwYD05k,26624
24
+ cocotb/simulator.cp312-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=uCxSBANX0zmdzeoptoltLyotiXZr4jlyAdPHOR5P_oA,22016
33
+ cocotb/libs/cocotb.exp,sha256=GsGzno222_pnaOKzeprHthcJbTSP4vvGqFmtLuVzCu4,1113
34
+ cocotb/libs/cocotb.lib,sha256=2xH6_e0zXbrLGpRLXYURGH7biFi-E9oP9NwelhkstM4,2372
35
+ cocotb/libs/cocotbfli_modelsim.dll,sha256=oHFn7IMg946_Ure9NLUqf6xRCr1AczI6L6EMtCaJOJ8,71168
36
+ cocotb/libs/cocotbfli_modelsim.exp,sha256=y2uOe8595_tTdrHU_bhkb2Y1ES20d43KLPfU_56W-WU,875
37
+ cocotb/libs/cocotbfli_modelsim.lib,sha256=_LCQHjVVEsnCS50WEEroe0xvk1BCNk3z7zhYNJ2NSsI,2176
38
+ cocotb/libs/cocotbutils.dll,sha256=DKxl5szTEeYub3MxetQKqtelTwLa0b0xsVTB6TYKz8s,9728
39
+ cocotb/libs/cocotbutils.exp,sha256=rm5Z_xRGYhtRelQUzMHqIp5rQSG9xz-SwZE8Kql5YNM,976
40
+ cocotb/libs/cocotbutils.lib,sha256=HsdiR-F3RintiDbu0CQXjAEeASIxoBRDX2R-LtwlJu4,2154
41
+ cocotb/libs/cocotbvhpi_aldec.dll,sha256=SYDtfvjeP7fVcB6jHvrg0FZvW_s8bdglCZ-K1ctALxk,66560
42
+ cocotb/libs/cocotbvhpi_aldec.exp,sha256=61W8pQB5qnDXnrZdxiqRtBWGzCxFjb7K8S7ezwtSAU4,1075
43
+ cocotb/libs/cocotbvhpi_aldec.lib,sha256=vWouEC3u4T4XB-LRpLzOjMIEwIAMI5TBkmzj566R1C4,2448
44
+ cocotb/libs/cocotbvhpi_modelsim.dll,sha256=Mk1R5AM3QhrXjpr0npSkZmWuB5oMRk0sbqkrLEF_3Ik,66560
45
+ cocotb/libs/cocotbvhpi_modelsim.exp,sha256=rfbtuMEqEniZMPBAubhoKv8ITGx7n_nx43rUWG4mXHk,1082
46
+ cocotb/libs/cocotbvhpi_modelsim.lib,sha256=mUX6byF-vNN5LmVEYAdSQRSqp7MJM183ZKeIYJgYhbA,2492
47
+ cocotb/libs/cocotbvpi_aldec.dll,sha256=JXABGwJKTn_HXM3_1w61BAX6Ee-IhVnOGU7S9eQ2NJI,55296
48
+ cocotb/libs/cocotbvpi_aldec.exp,sha256=zKJ7yCizV0tzuUZTgAI6gteK13DEcZSFgGSucY8dVFw,1070
49
+ cocotb/libs/cocotbvpi_aldec.lib,sha256=qTM5sqWxFlFfOxoO9Ul5BVFBvXtyDLIsRDopl0yDQDQ,2428
50
+ cocotb/libs/cocotbvpi_ghdl.dll,sha256=JY12P365h0LpdM1E7OPW9GxrsEJGWPvrUhgae65cwCk,55296
51
+ cocotb/libs/cocotbvpi_ghdl.exp,sha256=mppdcD2heAdZd75iCs5J6sOF3UpBhUdwIrNsc-H9Stg,1069
52
+ cocotb/libs/cocotbvpi_ghdl.lib,sha256=VlQEIPlp0wDKcjGO7UTqlWOZfc8ctNIczUGNiS4dBbk,2412
53
+ cocotb/libs/cocotbvpi_icarus.exp,sha256=_Ww6bgi193IzY_HhjCxHMZynSynrc-96PhPeuZzGcm4,1073
54
+ cocotb/libs/cocotbvpi_icarus.lib,sha256=wW99qnEZaopG_64RsGl8m5ABY8Re7MP70uY7IQ-bfOE,2442
55
+ cocotb/libs/cocotbvpi_icarus.vpl,sha256=kUbEX2rBb905S5NsOGzFKFWk-0LVykUDcvhi03PDFZs,55296
56
+ cocotb/libs/cocotbvpi_modelsim.dll,sha256=B91KVRuo8K4bvuPld_MNmKEFvBCy5_UMdBMHEK4MFh0,55296
57
+ cocotb/libs/cocotbvpi_modelsim.exp,sha256=PSSCMEOW8hbaJksg-L2yI6F0oygymXLqc4WhFGt62ug,1077
58
+ cocotb/libs/cocotbvpi_modelsim.lib,sha256=uz3IKNFqGxeZg_LR5K0qUvDK-ysQuvsoxveMlr3VFr0,2472
59
+ cocotb/libs/embed.dll,sha256=TbMhQ6AVgKTJEdW1SXdBgXICU_KPtMFBu4zG4ZCbLzg,10752
60
+ cocotb/libs/embed.exp,sha256=YjtUGLQvmXZsw6wsLa-aM3eeg3uR2q2wdlvCxNNdTsc,1100
61
+ cocotb/libs/embed.lib,sha256=FdBjLuDALT1xrtC1MJv0ik9gEO96O4FeYkkXbPteOQA,2336
62
+ cocotb/libs/gpi.dll,sha256=f3bMOTJKsOyuOEui2MbefPOPpkz7E_WpqF45Ld_woCY,39424
63
+ cocotb/libs/gpi.exp,sha256=w-tXk-BZmOpjlzWvf3Hgajf4kKc6a_-k6TSMynhybDo,20708
64
+ cocotb/libs/gpi.lib,sha256=ZZHd88sh_fO5DMV-fLKeDPSVSAgD6-MTOLzO9jaZZ0A,33912
65
+ cocotb/libs/gpilog.dll,sha256=fS08K_NtRy2-3txGiouBmKU2KxxckJ7LjT92k2oJ9ik,13312
66
+ cocotb/libs/gpilog.exp,sha256=4Q9rfDdeihBkOubSlzq5x5EaqvCmpG-KqplAloNZdqA,1652
67
+ cocotb/libs/gpilog.lib,sha256=6Lj8nmF86mVY7FD4Lbjwg_D1CojGMqJFeHoQRd2zBqE,3272
68
+ cocotb/libs/pygpilog.dll,sha256=4PkgLnHj0zNp7OQR7oxa0UunHmHGgKyBamdB-lwFgTU,14848
69
+ cocotb/libs/pygpilog.exp,sha256=Z7GOhaeQqlCnBoMyd1XlFHHqeTPqzTzCMlilSIejWE4,1045
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/aldec.exp,sha256=-WE4QyYySk407MEgCvttP5VBGDp0vjGsX5HSYhpgWmI,7802
75
+ cocotb/share/def/aldec.lib,sha256=sUa_nE6ntm_yTDHTj018utpn-yvJwv-7C7KPvexKtBE,13212
76
+ cocotb/share/def/ghdl.def,sha256=ETQh5VI72dWSJi_ig5m163GfLrxScYUamt5BjHjoKsY,705
77
+ cocotb/share/def/ghdl.exp,sha256=ScTP5zAOFFPv6jARJlGwSO2gLi0OpKc1lZmUwHBH1aw,5670
78
+ cocotb/share/def/ghdl.lib,sha256=sGSgF_8sPM-mIXEbm0QNx0sXq-UkAyED91Z42pKUGOM,9780
79
+ cocotb/share/def/icarus.def,sha256=VRqkgUyzR2sa916Ra56cZVIb4kzbqDlJVWIOc3389qY,698
80
+ cocotb/share/def/icarus.exp,sha256=jcMrT7j7--x37OnGf6t9Pqbdk6pqEctqEBcrNmNS0_s,5664
81
+ cocotb/share/def/icarus.lib,sha256=XS5_IGq-1ym5PhxVHZYHb8pKzwXVwGFJ19KgsFq2lXY,9412
82
+ cocotb/share/def/modelsim.def,sha256=_6VexHTDM7geGOfedUCm6CLRpXS4DrcHUlP_BQxL1Nc,2389
83
+ cocotb/share/def/modelsim.exp,sha256=JnWHu1zl_bAhFjQ0D-SKfx7Mkx3Yk6FbVZCqhpxFveo,16632
84
+ cocotb/share/def/modelsim.lib,sha256=X54aVShlGmtNFX2eCF9PQ3PXURqf4HBj66wUvGNxopo,27556
85
+ cocotb/share/include/cocotb_utils.h,sha256=v3byzF0uZbks5umkKBe-mgB9J3ShtKwam0_S2vIS10A,4091
86
+ cocotb/share/include/embed.h,sha256=Fw0szHcAsXyrK_APXxZE-t0ttqmA8IUC72XXYO5yPl8,2509
87
+ cocotb/share/include/exports.h,sha256=RRDg9diMCUUJxdzKX0B6TGmQBNttcoVMBVCCLUUKsrA,677
88
+ cocotb/share/include/gpi.h,sha256=FvlF0QQD1rfy_jZ6Q_EnUpymNz7BtrGCgunXV8hg40k,10264
89
+ cocotb/share/include/gpi_logging.h,sha256=_Z00YAtMqSr5Mk3WSQ0YjQ5nyPvsxA5vmou1G8lX-B4,10553
90
+ cocotb/share/include/py_gpi_logging.h,sha256=zuuDIsKCdLOfUwOMv5EzeQWHuM0PaHzYE1kIH6TSWys,672
91
+ cocotb/share/include/vhpi_user_ext.h,sha256=VLXbA-oeO83mL1vR0e4Ye0zMe5ijIaXnvT2FRFgsYDY,654
92
+ cocotb/share/include/vpi_user_ext.h,sha256=ofqT24X1KOLeIDowuZxKDYvCTgXAy_RzMz5-_LjSZas,2511
93
+ cocotb/share/lib/verilator/verilator.cpp,sha256=YSgErhCJUqKkuVIYHZhd9wNVASCwbsMwSzxrhbjolL4,5930
94
+ cocotb/share/makefiles/Makefile.deprecations,sha256=83TZ1sYlXpVL5erEAr1Y0ZknoX-3vVn5gcwHwaAf30k,428
95
+ cocotb/share/makefiles/Makefile.inc,sha256=C9tqM_q9ApnznJ4BE4vB1TDmfvXhP6WzFfwFpFeu8g4,6886
96
+ cocotb/share/makefiles/Makefile.sim,sha256=ZcH75xfEH-8tr3ep_Nt64R5F-sRKFWucxodGNx0g8UY,5406
97
+ cocotb/share/makefiles/simulators/Makefile.activehdl,sha256=_gw5TqzZma_D02yzBGsZbTqXWF6_nlIhRFHEmstVcS8,2884
98
+ cocotb/share/makefiles/simulators/Makefile.cvc,sha256=FyoJAf3S69441uHa94zO8PYNn6mhG2wJrfAF-B8GTEI,4013
99
+ cocotb/share/makefiles/simulators/Makefile.ghdl,sha256=SzBp8k9zoCnf-YS4AGMRLZAmlmglfF8us1fGimqoDK8,4849
100
+ cocotb/share/makefiles/simulators/Makefile.icarus,sha256=rP0b4s74sjGJHf5fY8YZXF3vRI_hkonTOAp09t3D4pw,4478
101
+ cocotb/share/makefiles/simulators/Makefile.ius,sha256=ddE1WNJjjqhsCYX4h0UFYxanVTWeuaAj5w4cHBy7wrE,5076
102
+ cocotb/share/makefiles/simulators/Makefile.modelsim,sha256=MQYmRb59nvUkY_f7GXUQVEYXQnU4IWA2-_G0N08StuI,1938
103
+ cocotb/share/makefiles/simulators/Makefile.nvc,sha256=67ExfYS0a94yl2zapb-dqAwjbAsH7w_pbYnaXSUT1Zc,2187
104
+ cocotb/share/makefiles/simulators/Makefile.questa,sha256=mIpdGq2safFnmkzAnmnErco4ZwMW_8mxui_cSs-2dbE,6732
105
+ cocotb/share/makefiles/simulators/Makefile.riviera,sha256=vYlPUC1fl5eSxklyBG9cCFBaKSYId1B3nHsSTFjs200,7060
106
+ cocotb/share/makefiles/simulators/Makefile.vcs,sha256=nT_Qang2qJg7XOF2ljeBpZSmfcw3mTu50LKz6Ltu2jI,3843
107
+ cocotb/share/makefiles/simulators/Makefile.verilator,sha256=f6yGtKg1_auBgtjqrLqf2XpbwOSD8nWwlPG6Amed-2A,2710
108
+ cocotb/share/makefiles/simulators/Makefile.xcelium,sha256=MDHygJhSRuMBiDcGlLXF26E2yNGO79utOiGmE0sJTFA,5762
109
+ cocotb/types/__init__.py,sha256=-M5mR--OWtFZ7Y4pjxB9CF4kmFtroDR7kzz1ba6h0No,1853
110
+ cocotb/types/array.py,sha256=JAg5YB84WwERF7S5SK16HvmzCYJgmc5trLATJT3TIqo,11208
111
+ cocotb/types/logic.py,sha256=PH5zocv9SpJam9Scc8Cl3uiDtPdtixhbiVLXjJPsPW8,8791
112
+ cocotb/types/logic_array.py,sha256=0XpStXNA7qY8FIoamb-dnn-IbzIOXIBoxd0tiWMlhVE,10255
113
+ cocotb/types/range.py,sha256=f25nic3X8jpd14nFU61D3izEOT77zPF_txZkWNrZ7N8,6428
114
+ pygpi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
115
+ pygpi/entry.py,sha256=LDJ8WK-s9nY_A5GEvPUuJTvnGqZvkhOe7i_yGQmqrI0,972
116
+ cocotb-1.9.2.dist-info/LICENSE,sha256=oBp8aKF9rhLjG78uW4zxmiVsjA8Viwwdyj3nSbEXpmc,1570
117
+ cocotb-1.9.2.dist-info/METADATA,sha256=ETVCctZAbaRWYvJwaAYYTepMosJgrWou3ImRKeuy5Hc,7069
118
+ cocotb-1.9.2.dist-info/WHEEL,sha256=WvkOSu_HO_oE3sQnGm0UPRliwo7WiDQj1dfKR15g8gQ,97
119
+ cocotb-1.9.2.dist-info/entry_points.txt,sha256=Z2JL-ZgU-G5au6uYpkWZz9Pfk7qnh4fcoQJmBxnHSZQ,53
120
+ cocotb-1.9.2.dist-info/top_level.txt,sha256=w-hmA_Ca52PldJkt5ya7gRP9tpUXfeJUGLMfXdv5Ez4,393
121
+ cocotb-1.9.2.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (74.0.0)
2
+ Generator: setuptools (75.2.0)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp312-cp312-win32
5
5
 
@@ -1,121 +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=Y9ZFAEIPVMHOYFbqj7R0BUsltw4atdHfsFFz6rNM-s8,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=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.cp312-win32.exp,sha256=OMZbLLM7XkbHDeyvc2LPLjsXKfJJANANwG2j1BGWWLo,749
22
- cocotb/simulator.cp312-win32.lib,sha256=CID-3OKyg8eOt59w91--uHZAhIXjZv0-tChPgxn5kXM,1992
23
- cocotb/simulator.cp312-win32.pyd,sha256=EbpQ-QB79N_qcJMDlkpGtnE-37ebS4V0_Q_JLMDtvOI,26624
24
- cocotb/simulator.cp312-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=y_kWpVRFEpHnTnX_mAan5dtPe6p0fwagBngJEoyLuJ8,22016
33
- cocotb/libs/cocotb.exp,sha256=z3rI9LIIMUrqMv9FXI-MjuA6WH4dXJeFlrG49THq5Is,1113
34
- cocotb/libs/cocotb.lib,sha256=hPy54GDalOzHJjqdnat0kfK8odfKtVwTt1cLq_DxXyc,2372
35
- cocotb/libs/cocotbfli_modelsim.dll,sha256=PZYg-rx0UCG2tdepDNh8UGpsIXcxG-5d2vXbAPbHsxs,71168
36
- cocotb/libs/cocotbfli_modelsim.exp,sha256=h60Z52Qq0S9rqr5d6CBdkrNq7hL3SzkRJvnOdRHGdlM,875
37
- cocotb/libs/cocotbfli_modelsim.lib,sha256=BG8lK7GKoDc16YkmG5Q97uYganPn_bhrFriw7dAIJdI,2176
38
- cocotb/libs/cocotbutils.dll,sha256=P_NSCuYCjaKhltFgB4_Rf9kUUMDOKCVskjonQAYJRQM,9728
39
- cocotb/libs/cocotbutils.exp,sha256=vfJdDfjTwRbi-h0UzuuDzE-EDqMEmEFH-cT0kaCiPL8,976
40
- cocotb/libs/cocotbutils.lib,sha256=H4V0CHERFPWaZpYQqAgC8GRk-mFxFm8VwhKaq6z8P4g,2154
41
- cocotb/libs/cocotbvhpi_aldec.dll,sha256=9hW-565QdnAax7Gaai7iph6xTyC7lSYBRPwtACL2Zd0,66560
42
- cocotb/libs/cocotbvhpi_aldec.exp,sha256=tGcYii4IWigbiUk41g5p5VelY7xkIjQ6o45JljL3kFs,1075
43
- cocotb/libs/cocotbvhpi_aldec.lib,sha256=0-kTyQ-me1yBM3g81pqcQIRx7oBCmiZqay6r-sk3Jn0,2448
44
- cocotb/libs/cocotbvhpi_modelsim.dll,sha256=PmxgtFJN7l4VJDuAERHSaGDOuJyB3rYMlOim0ULqu4E,66560
45
- cocotb/libs/cocotbvhpi_modelsim.exp,sha256=ODVbO0FmlMch9UFBUP_gaHm1JE4JNqJdTfTWKC5ua1I,1082
46
- cocotb/libs/cocotbvhpi_modelsim.lib,sha256=0qar0Am4uM5K_jNBZ0Ojdab9lfO1pECzXKuDUu9O6rA,2492
47
- cocotb/libs/cocotbvpi_aldec.dll,sha256=22pfLla9USh7DJLLoRqZUFMmX1AVLI81DfmRoo2WshE,55296
48
- cocotb/libs/cocotbvpi_aldec.exp,sha256=DJW45GY984ff6uWvDsCdn7pIcLb5dlPlInK-D-Tpgu8,1070
49
- cocotb/libs/cocotbvpi_aldec.lib,sha256=cAVFVCWHFHVg-PkZHq1t146si32T-IXCDiP0SmalQ8c,2428
50
- cocotb/libs/cocotbvpi_ghdl.dll,sha256=vfNzwG8xAqVN6-s7LgxG2HbpqgYABdJsws8XGby0Sco,55296
51
- cocotb/libs/cocotbvpi_ghdl.exp,sha256=1HVj0addi1_R9JdXBqlSguBmZgOoKfgz1BfaeNiiaV0,1069
52
- cocotb/libs/cocotbvpi_ghdl.lib,sha256=jCzTVEY4lijNoQM73mi6p03vwJA5lfLGf4hIzP36S1U,2412
53
- cocotb/libs/cocotbvpi_icarus.exp,sha256=SGKSN665-1491gdJjUI4wp6hbWDJ4AtSRA0OYo-9hbQ,1073
54
- cocotb/libs/cocotbvpi_icarus.lib,sha256=G5AxR27X-sbyTTNBZy-0P7cWeNhCwwy-ie4901C2aHQ,2442
55
- cocotb/libs/cocotbvpi_icarus.vpl,sha256=w84_2wJ-5dUsOzy96GRHg5mI9wNfUlTgBmplWFZ3MZo,55296
56
- cocotb/libs/cocotbvpi_modelsim.dll,sha256=buWbqZd5cg9ApR3S5B5hp44Wr0a4Xf77A3pY6wToCTw,55296
57
- cocotb/libs/cocotbvpi_modelsim.exp,sha256=HnB20Mv9AZa_6havjueT3RyGyYz4E6mMH0n6EU9Ruzw,1077
58
- cocotb/libs/cocotbvpi_modelsim.lib,sha256=GVwcPynMWkLvxjMhU7pPW-KJCQ-Egs61THILXGI0N_E,2472
59
- cocotb/libs/embed.dll,sha256=O7OWdvIusQWN6WL7hAqtd2lm85yflBUuuxkgX3JjZmU,10752
60
- cocotb/libs/embed.exp,sha256=4F1ToI-TfJsk1wIKCHxC2AurOzg82v5v8tpwbC77nyY,1100
61
- cocotb/libs/embed.lib,sha256=41YygVBhqCqfznYC9t6bP-l489uYuJwm-PgBrdyhzw8,2336
62
- cocotb/libs/gpi.dll,sha256=uBVBu4Jb3z2CKEARaAKskeO0cq3NAKO8N-Km5ek-hFU,39424
63
- cocotb/libs/gpi.exp,sha256=KBJYCnqWEYcMqeYZTu9DgAP64f1vKvsfZ-NAqro3d-4,20708
64
- cocotb/libs/gpi.lib,sha256=8z7clkqJgME5BnF09yr7O-s84np7ToFufB3XiKryvSk,33912
65
- cocotb/libs/gpilog.dll,sha256=cMYjcZdGErKqk6NmcHcN8KFzXr4fzpv6ed10LudwGN4,13312
66
- cocotb/libs/gpilog.exp,sha256=R8kcJYX2nKOiIPs4A4gzMclhXhEr2vvjz8pleJx_2jU,1652
67
- cocotb/libs/gpilog.lib,sha256=dpSv7yikJzemai2SztogT9xcu9QXGvQkVinRtkSvMsA,3272
68
- cocotb/libs/pygpilog.dll,sha256=c1Oc4MrIQn-s1VZsj96TnpMAlsnmijIe-1CVekWag1U,14848
69
- cocotb/libs/pygpilog.exp,sha256=NU7H_hAA7odzexstGihDroi2NY5JV-90c1R90AYHARM,1045
70
- cocotb/libs/pygpilog.lib,sha256=SsZgg7WS7nE3l6yRn2yk3K01unGvkpKt6K58dJe1B_o,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/aldec.exp,sha256=XRM2qwraY-5yqXW4ue6xhifM9v9Dq051gRhe9AAzdpQ,7802
75
- cocotb/share/def/aldec.lib,sha256=ZUVgI9VJW6Sax5FX5-L3auyK_ttZtrx0uHYXe7auhFw,13212
76
- cocotb/share/def/ghdl.def,sha256=ETQh5VI72dWSJi_ig5m163GfLrxScYUamt5BjHjoKsY,705
77
- cocotb/share/def/ghdl.exp,sha256=3KyRlFSMbkC1j7I_BQ6UEapALu5To19X_l-NZgF6kf8,5670
78
- cocotb/share/def/ghdl.lib,sha256=3jx0hzWRnPBKv3OZOpcNYjrvbbgwvKuaaXzY3uTwNnY,9780
79
- cocotb/share/def/icarus.def,sha256=VRqkgUyzR2sa916Ra56cZVIb4kzbqDlJVWIOc3389qY,698
80
- cocotb/share/def/icarus.exp,sha256=0k2ev7MJuqS6JQFXq3JLnsZUxP9pRSHMJgTKnEVF7UY,5664
81
- cocotb/share/def/icarus.lib,sha256=M9oShRta3hhkffc3mLdEmW6481n9m9qnf8dyxjB_sEw,9412
82
- cocotb/share/def/modelsim.def,sha256=_6VexHTDM7geGOfedUCm6CLRpXS4DrcHUlP_BQxL1Nc,2389
83
- cocotb/share/def/modelsim.exp,sha256=21OXXY962dwDyiqyWc6y3HvqH4ZFWSC0ryuV_5jGunM,16632
84
- cocotb/share/def/modelsim.lib,sha256=XoMPvuHOCCh3KR4I7skUxKWX6buQAtQ6dft5lA2I6xo,27556
85
- cocotb/share/include/cocotb_utils.h,sha256=v3byzF0uZbks5umkKBe-mgB9J3ShtKwam0_S2vIS10A,4091
86
- cocotb/share/include/embed.h,sha256=Fw0szHcAsXyrK_APXxZE-t0ttqmA8IUC72XXYO5yPl8,2509
87
- cocotb/share/include/exports.h,sha256=RRDg9diMCUUJxdzKX0B6TGmQBNttcoVMBVCCLUUKsrA,677
88
- cocotb/share/include/gpi.h,sha256=FvlF0QQD1rfy_jZ6Q_EnUpymNz7BtrGCgunXV8hg40k,10264
89
- cocotb/share/include/gpi_logging.h,sha256=_Z00YAtMqSr5Mk3WSQ0YjQ5nyPvsxA5vmou1G8lX-B4,10553
90
- cocotb/share/include/py_gpi_logging.h,sha256=zuuDIsKCdLOfUwOMv5EzeQWHuM0PaHzYE1kIH6TSWys,672
91
- cocotb/share/include/vhpi_user_ext.h,sha256=VLXbA-oeO83mL1vR0e4Ye0zMe5ijIaXnvT2FRFgsYDY,654
92
- cocotb/share/include/vpi_user_ext.h,sha256=ofqT24X1KOLeIDowuZxKDYvCTgXAy_RzMz5-_LjSZas,2511
93
- cocotb/share/lib/verilator/verilator.cpp,sha256=YSgErhCJUqKkuVIYHZhd9wNVASCwbsMwSzxrhbjolL4,5930
94
- cocotb/share/makefiles/Makefile.deprecations,sha256=83TZ1sYlXpVL5erEAr1Y0ZknoX-3vVn5gcwHwaAf30k,428
95
- cocotb/share/makefiles/Makefile.inc,sha256=C9tqM_q9ApnznJ4BE4vB1TDmfvXhP6WzFfwFpFeu8g4,6886
96
- cocotb/share/makefiles/Makefile.sim,sha256=ZcH75xfEH-8tr3ep_Nt64R5F-sRKFWucxodGNx0g8UY,5406
97
- cocotb/share/makefiles/simulators/Makefile.activehdl,sha256=mnyJnKS_kFt0GRQMvTIsxQrS7cX7l17mu1BosvJy9j8,2703
98
- cocotb/share/makefiles/simulators/Makefile.cvc,sha256=FyoJAf3S69441uHa94zO8PYNn6mhG2wJrfAF-B8GTEI,4013
99
- cocotb/share/makefiles/simulators/Makefile.ghdl,sha256=SzBp8k9zoCnf-YS4AGMRLZAmlmglfF8us1fGimqoDK8,4849
100
- cocotb/share/makefiles/simulators/Makefile.icarus,sha256=rP0b4s74sjGJHf5fY8YZXF3vRI_hkonTOAp09t3D4pw,4478
101
- cocotb/share/makefiles/simulators/Makefile.ius,sha256=ddE1WNJjjqhsCYX4h0UFYxanVTWeuaAj5w4cHBy7wrE,5076
102
- cocotb/share/makefiles/simulators/Makefile.modelsim,sha256=MQYmRb59nvUkY_f7GXUQVEYXQnU4IWA2-_G0N08StuI,1938
103
- cocotb/share/makefiles/simulators/Makefile.nvc,sha256=67ExfYS0a94yl2zapb-dqAwjbAsH7w_pbYnaXSUT1Zc,2187
104
- cocotb/share/makefiles/simulators/Makefile.questa,sha256=QTWA-54yrG7tuzXDBCx5eKmRXaC77vs7Il89xDNkG5I,6581
105
- cocotb/share/makefiles/simulators/Makefile.riviera,sha256=h0Rvkedvxn9r5lsCXi9kgeRfZrCdqXhITx-6TOprHNU,6841
106
- cocotb/share/makefiles/simulators/Makefile.vcs,sha256=nT_Qang2qJg7XOF2ljeBpZSmfcw3mTu50LKz6Ltu2jI,3843
107
- cocotb/share/makefiles/simulators/Makefile.verilator,sha256=f6yGtKg1_auBgtjqrLqf2XpbwOSD8nWwlPG6Amed-2A,2710
108
- cocotb/share/makefiles/simulators/Makefile.xcelium,sha256=MDHygJhSRuMBiDcGlLXF26E2yNGO79utOiGmE0sJTFA,5762
109
- cocotb/types/__init__.py,sha256=-M5mR--OWtFZ7Y4pjxB9CF4kmFtroDR7kzz1ba6h0No,1853
110
- cocotb/types/array.py,sha256=JAg5YB84WwERF7S5SK16HvmzCYJgmc5trLATJT3TIqo,11208
111
- cocotb/types/logic.py,sha256=PH5zocv9SpJam9Scc8Cl3uiDtPdtixhbiVLXjJPsPW8,8791
112
- cocotb/types/logic_array.py,sha256=0XpStXNA7qY8FIoamb-dnn-IbzIOXIBoxd0tiWMlhVE,10255
113
- cocotb/types/range.py,sha256=f25nic3X8jpd14nFU61D3izEOT77zPF_txZkWNrZ7N8,6428
114
- pygpi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
115
- pygpi/entry.py,sha256=LDJ8WK-s9nY_A5GEvPUuJTvnGqZvkhOe7i_yGQmqrI0,972
116
- cocotb-1.9.1.dist-info/LICENSE,sha256=oBp8aKF9rhLjG78uW4zxmiVsjA8Viwwdyj3nSbEXpmc,1570
117
- cocotb-1.9.1.dist-info/METADATA,sha256=WYc2iw8r-zMLErd66Jgqz6xoiTw3VvKB5rXXZcZGDKQ,6965
118
- cocotb-1.9.1.dist-info/WHEEL,sha256=cRbpJC21ipLMFaRlZknhlyM-qB4poTGYtmGF90hEVFw,97
119
- cocotb-1.9.1.dist-info/entry_points.txt,sha256=Z2JL-ZgU-G5au6uYpkWZz9Pfk7qnh4fcoQJmBxnHSZQ,53
120
- cocotb-1.9.1.dist-info/top_level.txt,sha256=w-hmA_Ca52PldJkt5ya7gRP9tpUXfeJUGLMfXdv5Ez4,393
121
- cocotb-1.9.1.dist-info/RECORD,,