├── .gitignore ├── .gitmodules ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── Verilog └── Makefile ├── gtkwave └── Makefile ├── scripts ├── addWavesRecursive.tcl ├── bits-to-asm ├── gtkwave-helper ├── vcd-prune └── verilog-to-graphviz └── verilator └── Makefile /.gitignore: -------------------------------------------------------------------------------- 1 | opt 2 | *~ 3 | .#* 4 | */build.log 5 | gtkwave/repo -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/hdl-tools/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/hdl-tools/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/hdl-tools/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/hdl-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/hdl-tools/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/hdl-tools/HEAD/README.md -------------------------------------------------------------------------------- /Verilog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/hdl-tools/HEAD/Verilog/Makefile -------------------------------------------------------------------------------- /gtkwave/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/hdl-tools/HEAD/gtkwave/Makefile -------------------------------------------------------------------------------- /scripts/addWavesRecursive.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/hdl-tools/HEAD/scripts/addWavesRecursive.tcl -------------------------------------------------------------------------------- /scripts/bits-to-asm: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | hexdump -v -e '".word 0x" 1 4 "%08x" "\n"' $@ 4 | -------------------------------------------------------------------------------- /scripts/gtkwave-helper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/hdl-tools/HEAD/scripts/gtkwave-helper -------------------------------------------------------------------------------- /scripts/vcd-prune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/hdl-tools/HEAD/scripts/vcd-prune -------------------------------------------------------------------------------- /scripts/verilog-to-graphviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/hdl-tools/HEAD/scripts/verilog-to-graphviz -------------------------------------------------------------------------------- /verilator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/hdl-tools/HEAD/verilator/Makefile --------------------------------------------------------------------------------