From a293e20d51ff6df86e2befe2dea28801483b30b2 Mon Sep 17 00:00:00 2001 From: FallenSigh Date: Wed, 24 Jun 2026 19:43:40 +0800 Subject: [PATCH] chore: add .gitignore, remove build artifacts from tracking --- .gitignore | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1dd4f2a --- /dev/null +++ b/.gitignore @@ -0,0 +1,15 @@ +# Verilator build artifacts +obj_dir/ +*/obj_dir/ + +# Python cache +__pycache__/ +*.pyc + +# Test framework outputs +test_framework/reports/report_*.html +test_framework/modules/*/vectors/*.hex + +# OS +.DS_Store +Thumbs.db