-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitignore
79 lines (65 loc) · 1.58 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# PET Clone - Open hardware implementation of the Commodore PET
# by Daniel Lehenbauer and contributors.
#
# https://github.com/DLehenbauer/commodore-pet-clone
#
# To the extent possible under law, I, Daniel Lehenbauer, have waived all
# copyright and related or neighboring rights to this project. This work is
# published from the United States.
#
# @copyright CC0 http://creativecommons.org/publicdomain/zero/1.0/
# @author Daniel Lehenbauer <[email protected]> and contributors
**/bin/
# KiCad local settings
hw/**/*.kicad_prl
# KiCad backup files
hw/**/*-bak
hw/**/_autosave-*
hw/**/*.bck
hw/**/*-backups/*.zip
hw/*/#auto_saved_files#
# KiCad footprint cache
hw/**/fp-info-cache
# Spectra import/export
hw/**/*.dsn
hw/**/*.ses
# Icarus Verilog build output
rtl/ep2/*.out
rtl/ep2/*.vcd
# Quartus generated files
rtl/ep2/*.v.bak
rtl/ep2/*.sdc.bak
rtl/ep2/*.sv.bak
rtl/ep2/*.tcl.bak
rtl/ep2/db/**
rtl/ep2/incremental_db/**
rtl/ep2/output_files/**
rtl/ep2/*.dpf
rtl/ep2/*.qws
rtl/ep2/*_nativelink_simulation.rpt
# ModelSim generated files
rtl/ep2/simulation/modelsim/**/*
# ATMISP log file
rtl/ep2/jtag.log
# PRGs
prgs/**
# CMake build artifacts
/build
# Roms
fw/roms/*.h
# Cortex-Debug extension state
.vscode/.cortex-debug.peripherals.state.json
.vscode/.cortex-debug.registers.state.json
# Efinity
rtl/t8/PET/.lock
rtl/t8/PET/*.vdb
rtl/t8/PET/debug_profile.wizard.json
rtl/t8/PET/efinity_dbg.jtag.log*
rtl/t8/PET/*.gtkw
rtl/t8/PET/*.vcd
rtl/t8/PET/outflow/**/*
rtl/t8/PET/work_dbg/**/*
rtl/t8/PET/work_pnr/**/*
rtl/t8/PET/work_pt/**/*
rtl/t8/PET/work_sim/**/*
rtl/t8/PET/work_syn/**/*