├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── asciidoctor-example ├── asciidoctor-html.sh ├── asciidoctor-pdf.sh ├── example.adoc ├── example.html ├── example.pdf ├── wavedrom_test0.svg ├── wavedrom_test1.svg ├── wavedrom_test10.svg ├── wavedrom_test11.svg ├── wavedrom_test12.svg ├── wavedrom_test1n.svg ├── wavedrom_test2.svg ├── wavedrom_test3.svg ├── wavedrom_test4.svg ├── wavedrom_test5.svg ├── wavedrom_test6.svg ├── wavedrom_test7.svg ├── wavedrom_test8.svg └── wavedrom_test9.svg ├── css └── default.css ├── doc ├── demo1.svg ├── demo2.svg └── demo3.svg ├── setup.cfg ├── setup.py ├── test ├── brick_regressions.py ├── conftest.py ├── diff.py ├── files │ ├── assign_74ls688.json │ ├── assign_binary2gray.json │ ├── assign_gray2binary.json │ ├── assign_iec60617.json │ ├── assign_xor.json │ ├── bitfield_0.json │ ├── issue_10.json │ ├── issue_11.json │ ├── issue_13.json │ ├── issue_14.json │ ├── issue_16.json │ ├── issue_37.json │ ├── issue_7.json │ ├── signal_0.json │ ├── subcycle_0.json │ ├── subcycle_1.json │ ├── tutorial_0.json │ ├── tutorial_0n.json │ ├── tutorial_1.json │ ├── tutorial_10.json │ ├── tutorial_11.json │ ├── tutorial_12.json │ ├── tutorial_1n.json │ ├── tutorial_2.json │ ├── tutorial_3.json │ ├── tutorial_4.json │ ├── tutorial_5.json │ ├── tutorial_6.json │ ├── tutorial_7.json │ ├── tutorial_8.json │ └── tutorial_9.json ├── single_test.py ├── test_brick_regression.py └── test_render.py ├── tox.ini └── wavedrom ├── __init__.py ├── assign.py ├── attrdict.py ├── base.py ├── bitfield.py ├── css.py ├── tspan.py ├── waveform.py └── waveskin.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/README.md -------------------------------------------------------------------------------- /asciidoctor-example/asciidoctor-html.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/asciidoctor-example/asciidoctor-html.sh -------------------------------------------------------------------------------- /asciidoctor-example/asciidoctor-pdf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/asciidoctor-example/asciidoctor-pdf.sh -------------------------------------------------------------------------------- /asciidoctor-example/example.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/asciidoctor-example/example.adoc -------------------------------------------------------------------------------- /asciidoctor-example/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/asciidoctor-example/example.html -------------------------------------------------------------------------------- /asciidoctor-example/example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/asciidoctor-example/example.pdf -------------------------------------------------------------------------------- /asciidoctor-example/wavedrom_test0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/asciidoctor-example/wavedrom_test0.svg -------------------------------------------------------------------------------- /asciidoctor-example/wavedrom_test1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/asciidoctor-example/wavedrom_test1.svg -------------------------------------------------------------------------------- /asciidoctor-example/wavedrom_test10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/asciidoctor-example/wavedrom_test10.svg -------------------------------------------------------------------------------- /asciidoctor-example/wavedrom_test11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/asciidoctor-example/wavedrom_test11.svg -------------------------------------------------------------------------------- /asciidoctor-example/wavedrom_test12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/asciidoctor-example/wavedrom_test12.svg -------------------------------------------------------------------------------- /asciidoctor-example/wavedrom_test1n.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/asciidoctor-example/wavedrom_test1n.svg -------------------------------------------------------------------------------- /asciidoctor-example/wavedrom_test2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/asciidoctor-example/wavedrom_test2.svg -------------------------------------------------------------------------------- /asciidoctor-example/wavedrom_test3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/asciidoctor-example/wavedrom_test3.svg -------------------------------------------------------------------------------- /asciidoctor-example/wavedrom_test4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/asciidoctor-example/wavedrom_test4.svg -------------------------------------------------------------------------------- /asciidoctor-example/wavedrom_test5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/asciidoctor-example/wavedrom_test5.svg -------------------------------------------------------------------------------- /asciidoctor-example/wavedrom_test6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/asciidoctor-example/wavedrom_test6.svg -------------------------------------------------------------------------------- /asciidoctor-example/wavedrom_test7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/asciidoctor-example/wavedrom_test7.svg -------------------------------------------------------------------------------- /asciidoctor-example/wavedrom_test8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/asciidoctor-example/wavedrom_test8.svg -------------------------------------------------------------------------------- /asciidoctor-example/wavedrom_test9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/asciidoctor-example/wavedrom_test9.svg -------------------------------------------------------------------------------- /css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/css/default.css -------------------------------------------------------------------------------- /doc/demo1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/doc/demo1.svg -------------------------------------------------------------------------------- /doc/demo2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/doc/demo2.svg -------------------------------------------------------------------------------- /doc/demo3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/doc/demo3.svg -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/setup.py -------------------------------------------------------------------------------- /test/brick_regressions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/test/brick_regressions.py -------------------------------------------------------------------------------- /test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/test/conftest.py -------------------------------------------------------------------------------- /test/diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/test/diff.py -------------------------------------------------------------------------------- /test/files/assign_74ls688.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/test/files/assign_74ls688.json -------------------------------------------------------------------------------- /test/files/assign_binary2gray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/test/files/assign_binary2gray.json -------------------------------------------------------------------------------- /test/files/assign_gray2binary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/test/files/assign_gray2binary.json -------------------------------------------------------------------------------- /test/files/assign_iec60617.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/test/files/assign_iec60617.json -------------------------------------------------------------------------------- /test/files/assign_xor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/test/files/assign_xor.json -------------------------------------------------------------------------------- /test/files/bitfield_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/test/files/bitfield_0.json -------------------------------------------------------------------------------- /test/files/issue_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/test/files/issue_10.json -------------------------------------------------------------------------------- /test/files/issue_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/test/files/issue_11.json -------------------------------------------------------------------------------- /test/files/issue_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/test/files/issue_13.json -------------------------------------------------------------------------------- /test/files/issue_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/test/files/issue_14.json -------------------------------------------------------------------------------- /test/files/issue_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/test/files/issue_16.json -------------------------------------------------------------------------------- /test/files/issue_37.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/test/files/issue_37.json -------------------------------------------------------------------------------- /test/files/issue_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/test/files/issue_7.json -------------------------------------------------------------------------------- /test/files/signal_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/test/files/signal_0.json -------------------------------------------------------------------------------- /test/files/subcycle_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/test/files/subcycle_0.json -------------------------------------------------------------------------------- /test/files/subcycle_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/test/files/subcycle_1.json -------------------------------------------------------------------------------- /test/files/tutorial_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/test/files/tutorial_0.json -------------------------------------------------------------------------------- /test/files/tutorial_0n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/test/files/tutorial_0n.json -------------------------------------------------------------------------------- /test/files/tutorial_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/test/files/tutorial_1.json -------------------------------------------------------------------------------- /test/files/tutorial_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/test/files/tutorial_10.json -------------------------------------------------------------------------------- /test/files/tutorial_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/test/files/tutorial_11.json -------------------------------------------------------------------------------- /test/files/tutorial_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/test/files/tutorial_12.json -------------------------------------------------------------------------------- /test/files/tutorial_1n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/test/files/tutorial_1n.json -------------------------------------------------------------------------------- /test/files/tutorial_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/test/files/tutorial_2.json -------------------------------------------------------------------------------- /test/files/tutorial_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/test/files/tutorial_3.json -------------------------------------------------------------------------------- /test/files/tutorial_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/test/files/tutorial_4.json -------------------------------------------------------------------------------- /test/files/tutorial_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/test/files/tutorial_5.json -------------------------------------------------------------------------------- /test/files/tutorial_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/test/files/tutorial_6.json -------------------------------------------------------------------------------- /test/files/tutorial_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/test/files/tutorial_7.json -------------------------------------------------------------------------------- /test/files/tutorial_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/test/files/tutorial_8.json -------------------------------------------------------------------------------- /test/files/tutorial_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/test/files/tutorial_9.json -------------------------------------------------------------------------------- /test/single_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/test/single_test.py -------------------------------------------------------------------------------- /test/test_brick_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/test/test_brick_regression.py -------------------------------------------------------------------------------- /test/test_render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/test/test_render.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/tox.ini -------------------------------------------------------------------------------- /wavedrom/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/wavedrom/__init__.py -------------------------------------------------------------------------------- /wavedrom/assign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/wavedrom/assign.py -------------------------------------------------------------------------------- /wavedrom/attrdict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/wavedrom/attrdict.py -------------------------------------------------------------------------------- /wavedrom/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/wavedrom/base.py -------------------------------------------------------------------------------- /wavedrom/bitfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/wavedrom/bitfield.py -------------------------------------------------------------------------------- /wavedrom/css.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/wavedrom/css.py -------------------------------------------------------------------------------- /wavedrom/tspan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/wavedrom/tspan.py -------------------------------------------------------------------------------- /wavedrom/waveform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/wavedrom/waveform.py -------------------------------------------------------------------------------- /wavedrom/waveskin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallento/wavedrompy/HEAD/wavedrom/waveskin.py --------------------------------------------------------------------------------