gitignore: organize and comment on files
Signed-off-by: Sean Cross <sean@xobs.io>
This commit is contained in:
parent
01913005cf
commit
af89bcc7f3
1 changed files with 19 additions and 5 deletions
24
.gitignore
vendored
24
.gitignore
vendored
|
|
@ -1,14 +1,28 @@
|
||||||
|
# C compilation artifacts
|
||||||
.obj/
|
.obj/
|
||||||
*.swp
|
*.o
|
||||||
*.swo
|
|
||||||
*~
|
|
||||||
*.bin
|
*.bin
|
||||||
*.dfu
|
*.dfu
|
||||||
*.ihex
|
*.ihex
|
||||||
*.elf
|
*.elf
|
||||||
|
|
||||||
|
# Swapfiles
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
|
*~
|
||||||
|
|
||||||
.vscode/
|
.vscode/
|
||||||
build/
|
|
||||||
|
# Python cache files
|
||||||
__pycache__/
|
__pycache__/
|
||||||
*.pyc
|
*.pyc
|
||||||
|
|
||||||
|
# Environment files generated by lxbuildenv
|
||||||
|
.env
|
||||||
|
|
||||||
|
# Output from LiteX
|
||||||
|
build/
|
||||||
test/
|
test/
|
||||||
.env
|
|
||||||
|
# Output from yosys
|
||||||
|
abc.history
|
||||||
Loading…
Reference in a new issue