-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathbuildall.bat
53 lines (39 loc) · 1.1 KB
/
buildall.bat
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
set GWSH=..\..\Gowin_V1.9.10.03_x64\IDE\bin\gw_sh
echo
echo "============ Building console60k with snes controller ==============="
echo
%GWSH% build.tcl console60k snes
echo
echo "============ Building console60k with ds2 controller ==============="
echo
%GWSH% build.tcl console60k ds2
echo
echo "============ Building mega60k with snes controller ==============="
echo
%GWSH% build.tcl mega60k snes
echo
echo "============ Building mega60k with ds2 controller ==============="
echo
%GWSH% build.tcl mega60k ds2
echo
echo "============ Building nano20k ==============="
echo
%GWSH% build.tcl nano20k
echo
echo "============ Building primer25k with snes controller ==============="
echo
%GWSH% build.tcl primer25k snes
echo
echo "============ Building primer25k with ds2 controller ==============="
echo
%GWSH% build.tcl primer25k ds2
echo
echo "============ Building mega138k pro with snes controller ==============="
echo
%GWSH% build.tcl mega138k snes
echo
echo "============ Building mega138k pro with ds2 controller ==============="
echo
%GWSH% build.tcl mega138k ds2
dir impl\pnr\*.fs
echo "All done."