File tree Expand file tree Collapse file tree 5 files changed +52
-0
lines changed Expand file tree Collapse file tree 5 files changed +52
-0
lines changed Original file line number Diff line number Diff line change
1
+ #------------------------------------------------------------------------------
2
+ # .gitignore for Gowin IDE
3
+ # Konstantin Pavlov, pavlovconst@gmail.com
4
+ #------------------------------------------------------------------------------
5
+
6
+ # INFO ------------------------------------------------------------------------
7
+ # rename the file to ".gitignore" and place into your Gowin project directory
8
+ #
9
+
10
+
11
+ # junk files
12
+ *.gprj.user
13
+ impl/gwsynthesis/*.html
14
+ impl/gwsynthesis/*.xml
15
+ impl/gwsynthesis/*.log
16
+ impl/gwsynthesis/*.vg
17
+
18
+ # junk directories
19
+ /impl/pnr
20
+ /impl/temp
21
+
Original file line number Diff line number Diff line change 1
1
#------------------------------------------------------------------------------
2
2
# .gitignore for Mentor Modelsim
3
+ # published as part of https://github.com/pConst/basic_verilog
3
4
# Konstantin Pavlov, pavlovconst@gmail.com
4
5
#------------------------------------------------------------------------------
5
6
Original file line number Diff line number Diff line change 1
1
#------------------------------------------------------------------------------
2
2
# .gitignore for Intel Quartus
3
+ # published as part of https://github.com/pConst/basic_verilog
3
4
# Konstantin Pavlov, pavlovconst@gmail.com
4
5
#------------------------------------------------------------------------------
5
6
Original file line number Diff line number Diff line change 1
1
#------------------------------------------------------------------------------
2
2
# .gitignore for Xilinx Vivado
3
+ # published as part of https://github.com/pConst/basic_verilog
3
4
# Konstantin Pavlov, pavlovconst@gmail.com
4
5
#------------------------------------------------------------------------------
5
6
Original file line number Diff line number Diff line change
1
+ @ echo off
2
+ rem ------------------------------------------------------------------------------
3
+ rem clean_gowin.bat
4
+ rem published as part of https://github.com/pConst/basic_verilog
5
+ rem Konstantin Pavlov, pavlovconst@gmail.com
6
+ rem ------------------------------------------------------------------------------
7
+
8
+ rem Use this file as a boilerplate for your custom clean script
9
+ rem for Gowin IDE projects
10
+
11
+
12
+ rem preserving .\impl\gwsynthesis\test.prj file
13
+ del /s /f /q .\impl\gwsynthesis\*.html
14
+ del /s /f /q .\impl\gwsynthesis\*.xml
15
+ del /s /f /q .\impl\gwsynthesis\*.log
16
+ del /s /f /q .\impl\gwsynthesis\*.vg
17
+
18
+ del /s /f /q .\impl\pnr\*
19
+ rmdir /s /q .\impl\pnr\
20
+
21
+ del /s /f /q .\impl\temp\*
22
+ rmdir /s /q .\impl\temp\
23
+
24
+ del /s /f /q .*.gprj.user
25
+
26
+ pause
27
+ goto :eof
28
+
You can’t perform that action at this time.
0 commit comments