├── .editorconfig ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── examples ├── simple_auto.v ├── simple_handler.v └── simple_manual.v ├── main.v └── v.mod /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedLT/Vroutine/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedLT/Vroutine/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedLT/Vroutine/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedLT/Vroutine/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedLT/Vroutine/HEAD/README.md -------------------------------------------------------------------------------- /examples/simple_auto.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedLT/Vroutine/HEAD/examples/simple_auto.v -------------------------------------------------------------------------------- /examples/simple_handler.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedLT/Vroutine/HEAD/examples/simple_handler.v -------------------------------------------------------------------------------- /examples/simple_manual.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedLT/Vroutine/HEAD/examples/simple_manual.v -------------------------------------------------------------------------------- /main.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedLT/Vroutine/HEAD/main.v -------------------------------------------------------------------------------- /v.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedLT/Vroutine/HEAD/v.mod --------------------------------------------------------------------------------