├── .gitattributes ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── makefile └── src ├── astyle.h ├── astyle ├── ASBeautifier.cpp ├── ASFormatter.cpp ├── ASResource.cpp └── ASStreamIterator.cpp ├── astyle_main.cpp └── compiler_defines.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasrussellmurphy/istyle-verilog-formatter/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Starting simple 2 | *.o 3 | iStyle 4 | bin 5 | dep 6 | obj 7 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasrussellmurphy/istyle-verilog-formatter/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasrussellmurphy/istyle-verilog-formatter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasrussellmurphy/istyle-verilog-formatter/HEAD/README.md -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasrussellmurphy/istyle-verilog-formatter/HEAD/makefile -------------------------------------------------------------------------------- /src/astyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasrussellmurphy/istyle-verilog-formatter/HEAD/src/astyle.h -------------------------------------------------------------------------------- /src/astyle/ASBeautifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasrussellmurphy/istyle-verilog-formatter/HEAD/src/astyle/ASBeautifier.cpp -------------------------------------------------------------------------------- /src/astyle/ASFormatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasrussellmurphy/istyle-verilog-formatter/HEAD/src/astyle/ASFormatter.cpp -------------------------------------------------------------------------------- /src/astyle/ASResource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasrussellmurphy/istyle-verilog-formatter/HEAD/src/astyle/ASResource.cpp -------------------------------------------------------------------------------- /src/astyle/ASStreamIterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasrussellmurphy/istyle-verilog-formatter/HEAD/src/astyle/ASStreamIterator.cpp -------------------------------------------------------------------------------- /src/astyle_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasrussellmurphy/istyle-verilog-formatter/HEAD/src/astyle_main.cpp -------------------------------------------------------------------------------- /src/compiler_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasrussellmurphy/istyle-verilog-formatter/HEAD/src/compiler_defines.h --------------------------------------------------------------------------------