├── .gitignore ├── LICENSE ├── README.md ├── fmt.vhd ├── fmt_examples.vhd ├── fmt_test.vhd ├── test.sh └── vectors └── format_test_vectors.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.cf 2 | *.o 3 | fmt_test 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpadalino/vhdl-format/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpadalino/vhdl-format/HEAD/README.md -------------------------------------------------------------------------------- /fmt.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpadalino/vhdl-format/HEAD/fmt.vhd -------------------------------------------------------------------------------- /fmt_examples.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpadalino/vhdl-format/HEAD/fmt_examples.vhd -------------------------------------------------------------------------------- /fmt_test.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpadalino/vhdl-format/HEAD/fmt_test.vhd -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpadalino/vhdl-format/HEAD/test.sh -------------------------------------------------------------------------------- /vectors/format_test_vectors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpadalino/vhdl-format/HEAD/vectors/format_test_vectors.txt --------------------------------------------------------------------------------