diff options
-rw-r--r-- | .clang-format | 6 | ||||
-rw-r--r-- | README.md | 13 |
2 files changed, 14 insertions, 5 deletions
diff --git a/.clang-format b/.clang-format index df4a55b..39ed432 100644 --- a/.clang-format +++ b/.clang-format @@ -3,7 +3,9 @@ Language: Cpp AlignAfterOpenBracket: AlwaysBreak AllowAllParametersOfDeclarationOnNextLine: true BinPackParameters: false -BreakBeforeBraces: Allman +BreakBeforeBraces: Linux PointerAlignment: Right ColumnLimit: 80 -IndentWidth: 2
\ No newline at end of file +IndentWidth: 4 +TabWidth: 4 +UseTab: Always
\ No newline at end of file @@ -1,12 +1,19 @@ # Risc V[ECTOR] +## dependencies +- cmake +- g++ (GCC) 11.4.0 +- python 3.10 or newer +- catch2 version 3.5.3 + ## to compile Generate the build directory with + `cmake -S . -B build` -then -`cmake --build build` -## to test +then compile both the simulator and tests with + +`cmake --build build` # about |