File tree 6 files changed +10
-6
lines changed
6 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 17
17
)
18
18
args = parser .parse_args ()
19
19
20
- prj = Diamond (odir = '../build/ diamond' )
20
+ prj = Diamond (odir = f'results/ diamond/ { args . source } / { args . board } ' )
21
21
22
22
if args .board == 'brevia2' :
23
23
prj .set_part ('LFXP2-5E-5TN144C' )
Original file line number Diff line number Diff line change 17
17
)
18
18
args = parser .parse_args ()
19
19
20
- prj = Ise (odir = '../build/ ise' )
20
+ prj = Ise (odir = f'results/ ise/ { args . source } / { args . board } ' )
21
21
22
22
if args .board == 's6micro' :
23
23
prj .set_part ('xc6slx9-2-csg324' )
35
35
36
36
if args .source == 'vhdl' :
37
37
prj .add_vhdl ('../sources/vhdl/*.vhdl' , 'blink_lib' )
38
+ prj .add_vhdl ('../sources/vhdl/top.vhdl' )
38
39
if args .source == 'vlog' :
39
40
prj .add_include ('../sources/vlog/include1' )
40
41
prj .add_include ('../sources/vlog/include2' )
Original file line number Diff line number Diff line change 16
16
)
17
17
args = parser .parse_args ()
18
18
19
- prj = Libero (odir = '../build/ libero' )
19
+ prj = Libero (odir = f'results/ libero/ { args . source } / { args . board } ' )
20
20
21
21
if args .board == 'maker' :
22
22
prj .set_part ('m2s010-1-tq144' )
Original file line number Diff line number Diff line change 18
18
)
19
19
args = parser .parse_args ()
20
20
21
- prj = Openflow (odir = '../build/ openflow' )
21
+ prj = Openflow (odir = f'results/ openflow/ { args . source } / { args . board } ' )
22
22
23
23
if args .board == 'icestick' :
24
24
prj .set_part ('hx1k-tq144' )
44
44
45
45
if args .source == 'vhdl' :
46
46
prj .add_vhdl ('../sources/vhdl/*.vhdl' , 'blink_lib' )
47
+ prj .add_vhdl ('../sources/vhdl/top.vhdl' )
47
48
if args .source == 'vlog' :
48
49
prj .add_include ('../sources/vlog/include1' )
49
50
prj .add_include ('../sources/vlog/include2' )
Original file line number Diff line number Diff line change 17
17
)
18
18
args = parser .parse_args ()
19
19
20
- prj = Quartus (odir = '../build/ quartus' )
20
+ prj = Quartus (odir = f'results/ quartus/ { args . source } / { args . board } ' )
21
21
22
22
if args .board == 'de10nano' :
23
23
prj .set_part ('5CSEBA6U23I7' )
29
29
30
30
if args .source == 'vhdl' :
31
31
prj .add_vhdl ('../sources/vhdl/*.vhdl' , 'blink_lib' )
32
+ prj .add_vhdl ('../sources/vhdl/top.vhdl' )
32
33
if args .source == 'vlog' :
33
34
prj .add_include ('../sources/vlog/include1' )
34
35
prj .add_include ('../sources/vlog/include2' )
Original file line number Diff line number Diff line change 17
17
)
18
18
args = parser .parse_args ()
19
19
20
- prj = Vivado (odir = '../build/ vivado' )
20
+ prj = Vivado (odir = f'results/ vivado/ { args . source } / { args . board } ' )
21
21
22
22
if args .board == 'zybo' :
23
23
prj .set_part ('xc7z010-1-clg400' )
35
35
36
36
if args .source == 'vhdl' :
37
37
prj .add_vhdl ('../sources/vhdl/*.vhdl' , 'blink_lib' )
38
+ prj .add_vhdl ('../sources/vhdl/top.vhdl' )
38
39
if args .source == 'vlog' :
39
40
prj .add_include ('../sources/vlog/include1' )
40
41
prj .add_include ('../sources/vlog/include2' )
You can’t perform that action at this time.
0 commit comments