/ .gitignore
.gitignore
 1  # Byte-compiled / optimized / DLL files
 2  __pycache__/
 3  *.py[cod]
 4  *$py.class
 5  
 6  # Environments
 7  .env
 8  .venv
 9  env/
10  venv/
11  ENV/
12  env.bak/
13  venv.bak/
14  .python-version
15  
16  # Verilog files
17  *.v
18  
19  # Verilog generation debug files
20  *.v.json
21  
22  # Waveform dumps
23  *.vcd
24  *.gtkw
25  
26  # Tests outputs
27  test/__traces__
28  test/__profiles__/*.json
29  pytestdebug.log
30  _coreblocks_regression.lock
31  _coreblocks_regression.counter
32  .hypothesis
33  
34  # cocotb build
35  /test/regression/cocotb/build
36  /test/regression/cocotb/results.xml
37  /test/regression/cocotb/cocotb-config.cache
38  
39  # riscv-tests
40  test/external/riscv-tests/test-*
41  
42  # embench benchmark
43  test/external/embench/build
44  test/external/embench/logs
45  /test/regression/benchmark_results
46  
47  # Documentation build
48  build/
49  docs/*.rst
50  
51  # Synthesis
52  build/
53  benchmark.json