riscv/
.clang-format
570 B
.gitignore
5 B
.gitsigners
112 B
LICENSE
1.1 KiB
Makefile
1.1 KiB
README
3.3 KiB
color.h
567 B
emulator.c
79.7 KiB
io.c
1.1 KiB
io.h
444 B
jit.c
32.6 KiB
jit.h
5.0 KiB
riscv.c
12.0 KiB
riscv.h
12.0 KiB
types.h
1.0 KiB
.clang-format
raw
| 1 | IndentWidth: 4 |
| 2 | ColumnLimit: 80 |
| 3 | UseTab: Never |
| 4 | AllowShortBlocksOnASingleLine: Always # or use 'Empty' for only empty blocks |
| 5 | AllowShortFunctionsOnASingleLine: Empty |
| 6 | AlignConsecutiveMacros: AcrossComments |
| 7 | AlignAfterOpenBracket: BlockIndent |
| 8 | AlignConsecutiveBitFields: AcrossEmptyLinesAndComments |
| 9 | AlignConsecutiveDeclarations: |
| 10 | Enabled: true |
| 11 | AlignConsecutiveAssignments: |
| 12 | Enabled: true |
| 13 | AlignCompound: true |
| 14 | PadOperators: true |
| 15 | BinPackParameters: false |
| 16 | BinPackArguments: false |
| 17 | BreakAfterReturnType: Automatic |
| 18 | PenaltyReturnTypeOnItsOwnLine: 999 |
| 19 | Cpp11BracedListStyle: false |