├── .github └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── src ├── doc │ ├── html │ │ ├── mod.rs │ │ ├── static │ │ │ ├── FiraSans-LICENSE.txt │ │ │ ├── FiraSans-Medium.woff │ │ │ ├── FiraSans-Regular.woff │ │ │ ├── SourceCodePro-LICENSE.txt │ │ │ ├── SourceCodePro-Regular.woff │ │ │ ├── SourceCodePro-Semibold.woff │ │ │ ├── SourceSerifPro-Bold.ttf.woff │ │ │ ├── SourceSerifPro-It.ttf.woff │ │ │ ├── SourceSerifPro-LICENSE.md │ │ │ ├── SourceSerifPro-Regular.ttf.woff │ │ │ ├── light.css │ │ │ ├── rustdoc.css │ │ │ └── svdoc.css │ │ └── static_files.rs │ ├── mod.rs │ └── raw.rs ├── lib.rs ├── main.rs └── printer.rs ├── test ├── doc.sv ├── import.sv ├── include.svh ├── instantiation.sv ├── interface.sv ├── modules.sv ├── package.sv ├── package_import.sv ├── package_import_2.sv └── preprocess.sv └── tests └── cli_tests.rs /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/morty/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/morty/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | sv-parser/ -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/morty/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/morty/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/morty/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/morty/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/morty/HEAD/README.md -------------------------------------------------------------------------------- /src/doc/html/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/morty/HEAD/src/doc/html/mod.rs -------------------------------------------------------------------------------- /src/doc/html/static/FiraSans-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/morty/HEAD/src/doc/html/static/FiraSans-LICENSE.txt -------------------------------------------------------------------------------- /src/doc/html/static/FiraSans-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/morty/HEAD/src/doc/html/static/FiraSans-Medium.woff -------------------------------------------------------------------------------- /src/doc/html/static/FiraSans-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/morty/HEAD/src/doc/html/static/FiraSans-Regular.woff -------------------------------------------------------------------------------- /src/doc/html/static/SourceCodePro-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/morty/HEAD/src/doc/html/static/SourceCodePro-LICENSE.txt -------------------------------------------------------------------------------- /src/doc/html/static/SourceCodePro-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/morty/HEAD/src/doc/html/static/SourceCodePro-Regular.woff -------------------------------------------------------------------------------- /src/doc/html/static/SourceCodePro-Semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/morty/HEAD/src/doc/html/static/SourceCodePro-Semibold.woff -------------------------------------------------------------------------------- /src/doc/html/static/SourceSerifPro-Bold.ttf.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/morty/HEAD/src/doc/html/static/SourceSerifPro-Bold.ttf.woff -------------------------------------------------------------------------------- /src/doc/html/static/SourceSerifPro-It.ttf.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/morty/HEAD/src/doc/html/static/SourceSerifPro-It.ttf.woff -------------------------------------------------------------------------------- /src/doc/html/static/SourceSerifPro-LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/morty/HEAD/src/doc/html/static/SourceSerifPro-LICENSE.md -------------------------------------------------------------------------------- /src/doc/html/static/SourceSerifPro-Regular.ttf.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/morty/HEAD/src/doc/html/static/SourceSerifPro-Regular.ttf.woff -------------------------------------------------------------------------------- /src/doc/html/static/light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/morty/HEAD/src/doc/html/static/light.css -------------------------------------------------------------------------------- /src/doc/html/static/rustdoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/morty/HEAD/src/doc/html/static/rustdoc.css -------------------------------------------------------------------------------- /src/doc/html/static/svdoc.css: -------------------------------------------------------------------------------- 1 | .type-annotation { 2 | font-weight: 200; 3 | } 4 | -------------------------------------------------------------------------------- /src/doc/html/static_files.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/morty/HEAD/src/doc/html/static_files.rs -------------------------------------------------------------------------------- /src/doc/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/morty/HEAD/src/doc/mod.rs -------------------------------------------------------------------------------- /src/doc/raw.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/morty/HEAD/src/doc/raw.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/morty/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/morty/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/printer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/morty/HEAD/src/printer.rs -------------------------------------------------------------------------------- /test/doc.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/morty/HEAD/test/doc.sv -------------------------------------------------------------------------------- /test/import.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/morty/HEAD/test/import.sv -------------------------------------------------------------------------------- /test/include.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/morty/HEAD/test/include.svh -------------------------------------------------------------------------------- /test/instantiation.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/morty/HEAD/test/instantiation.sv -------------------------------------------------------------------------------- /test/interface.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/morty/HEAD/test/interface.sv -------------------------------------------------------------------------------- /test/modules.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/morty/HEAD/test/modules.sv -------------------------------------------------------------------------------- /test/package.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/morty/HEAD/test/package.sv -------------------------------------------------------------------------------- /test/package_import.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/morty/HEAD/test/package_import.sv -------------------------------------------------------------------------------- /test/package_import_2.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/morty/HEAD/test/package_import_2.sv -------------------------------------------------------------------------------- /test/preprocess.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/morty/HEAD/test/preprocess.sv -------------------------------------------------------------------------------- /tests/cli_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/morty/HEAD/tests/cli_tests.rs --------------------------------------------------------------------------------