Ignore local build artifacts

This commit is contained in:
2026-04-28 14:31:37 +02:00
parent 329610807e
commit 72c970fc20
2 changed files with 44 additions and 0 deletions
+23
View File
@@ -1,2 +1,25 @@
# Local Codex state # Local Codex state
.codex .codex
# OS / filesystem junk
.DS_Store
Thumbs.db
desktop.ini
# Editor / IDE state
.vscode/
.idea/
*.swp
*.swo
*~
# Vivado scratch dropped in the current working directory whenever Vivado is
# invoked from anywhere other than FPGA/vivado/ (e.g. running create_project.tcl
# from the repo root).
.Xil/
vivado*.jou
vivado*.log
vivado*.backup.*
webtalk*.jou
webtalk*.log
usage_statistics_webtalk.*
+21
View File
@@ -0,0 +1,21 @@
# Bare-metal RISC-V build artifacts (riscv64-unknown-elf-gcc / ld / objcopy).
# Source (.c, .S, .h, *.ld linker scripts, Makefiles) stays tracked.
# Object / archive / dependency files
*.o
*.a
*.d
# Linked outputs
*.elf
*.bin
*.hex
*.map
*.lst
*.dis
*.dump
# Common build directories
build/
obj/
out/