├── .ci ├── Dockerfile ├── docker_entry_point.sh ├── setup_ghdl.sh ├── setup_msim.sh └── setup_xvhdl.sh ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── ghdl.prj ├── msim.prj ├── run.py ├── run_tests.sh └── src ├── str_format_pkg.vhd └── test └── str_format_tb.vhd /.ci/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoto/hdl_string_format/HEAD/.ci/Dockerfile -------------------------------------------------------------------------------- /.ci/docker_entry_point.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoto/hdl_string_format/HEAD/.ci/docker_entry_point.sh -------------------------------------------------------------------------------- /.ci/setup_ghdl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoto/hdl_string_format/HEAD/.ci/setup_ghdl.sh -------------------------------------------------------------------------------- /.ci/setup_msim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoto/hdl_string_format/HEAD/.ci/setup_msim.sh -------------------------------------------------------------------------------- /.ci/setup_xvhdl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoto/hdl_string_format/HEAD/.ci/setup_xvhdl.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoto/hdl_string_format/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoto/hdl_string_format/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoto/hdl_string_format/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoto/hdl_string_format/HEAD/README.md -------------------------------------------------------------------------------- /ghdl.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoto/hdl_string_format/HEAD/ghdl.prj -------------------------------------------------------------------------------- /msim.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoto/hdl_string_format/HEAD/msim.prj -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoto/hdl_string_format/HEAD/run.py -------------------------------------------------------------------------------- /run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoto/hdl_string_format/HEAD/run_tests.sh -------------------------------------------------------------------------------- /src/str_format_pkg.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoto/hdl_string_format/HEAD/src/str_format_pkg.vhd -------------------------------------------------------------------------------- /src/test/str_format_tb.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoto/hdl_string_format/HEAD/src/test/str_format_tb.vhd --------------------------------------------------------------------------------