文件名称:pyvcd:用于编写Value Change Dump(VCD)文件的Python包
文件大小:32KB
文件格式:ZIP
更新时间:2024-06-17 09:51:22
Python
PyVCD PyVCD包按照IEEE 1364-2005中的规定写入值更改转储(VCD)文件。 阅读。 访问 。 快速开始 >>> import sys >>> from vcd import VCDWriter >>> with VCDWriter(sys.stdout, timescale='1 ns', date='today') as writer: ... counter_var = writer.register_var('a.b.c', 'counter', 'integer', size=8) ... real_var = writer.register_var('a.b.c', 'x', 'real', init=1.23) ... for timestamp, value in enumerate(range(10, 20, 2)): .
【文件预览】:
pyvcd-master
----setup.py(76B)
----.gitignore(114B)
----requirements.txt(158B)
----Makefile(723B)
----pyproject.toml(328B)
----MANIFEST.in(208B)
----setup.cfg(1KB)
----LICENSE.txt(1KB)
----.github()
--------workflows()
----README.rst(2KB)
----tests()
--------conftest.py(240B)
--------test_writer.py(26KB)
--------test_gtkw.py(13KB)
----.coveragerc(36B)
----vcd()
--------writer.py(28KB)
--------gtkw.py(25KB)
--------__init__.py(208B)
--------py.typed(0B)
----CHANGELOG.rst(2KB)
----docs()
--------vcd.gtkw.rst(307B)
--------Makefile(7KB)
--------index.rst(238B)
--------conf.py(1KB)
--------vcd.writer.rst(375B)
--------vcd.rst(45B)
----tox.ini(177B)