This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """Small tool that converts clk_dump into DOT graph""" | |
| # | |
| # YOu can use it like this: | |
| # ./clk2dot.py FILE | unflatten -fl 20 | dot -Tpng > graph.png | |
| # | |
| import sys | |
| import json |