Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/FPGAwars/apio into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Obijuan committed Feb 22, 2024
2 parents b644a31 + 7c069f7 commit 44acbd4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions apio/resources/ecp5/SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,8 @@ AlwaysBuild(upload)

# -- Target time: calculate the time
rpt = env.Time(config_out)
AlwaysBuild(rpt)
t = env.Alias('time', rpt)
AlwaysBuild(t)

# -- Icarus Verilog builders
iverilog = Builder(
Expand Down Expand Up @@ -231,7 +231,7 @@ AlwaysBuild(verify)
if 'sim' in COMMAND_LINE_TARGETS:
sout = env.IVerilog(SIMULNAME, src_sim)
vcd_file = env.VCD(sout)
waves = env.Alias('sim', vcd_file, 'gtkwave {0} {1}.gtkw'.format(
waves = env.Alias('sim', vcd_file, 'gtkwave --rcvar "splash_disable on" {0} {1}.gtkw'.format(
vcd_file[0], SIMULNAME))
AlwaysBuild(waves)

Expand Down
4 changes: 2 additions & 2 deletions apio/resources/ice40/SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,8 @@ AlwaysBuild(upload)

# -- Target time: calculate the time
rpt = env.Time(asc)
AlwaysBuild(rpt)
t = env.Alias('time', rpt)
AlwaysBuild(t)

# -- Icarus Verilog builders
iverilog = Builder(
Expand Down Expand Up @@ -236,7 +236,7 @@ AlwaysBuild(verify)
if 'sim' in COMMAND_LINE_TARGETS:
sout = env.IVerilog(SIMULNAME, src_sim)
vcd_file = env.VCD(sout)
waves = env.Alias('sim', vcd_file, 'gtkwave {0} {1}.gtkw'.format(
waves = env.Alias('sim', vcd_file, 'gtkwave --rcvar "splash_disable on" {0} {1}.gtkw'.format(
vcd_file[0], SIMULNAME))
AlwaysBuild(waves)

Expand Down

0 comments on commit 44acbd4

Please sign in to comment.