Skip to content

Commit

Permalink
Bug fixed: #363: Error when executing apio graph
Browse files Browse the repository at this point in the history
  • Loading branch information
Obijuan committed Mar 26, 2024
1 parent f91e967 commit 6965024
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apio/resources/ecp5/SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ iverilog = Builder(
env.Append(BUILDERS={'IVerilog': iverilog})

dot_builder = Builder(
action='yosys -p \"show -format dot -colors 1 -prefix hardware {0}\" {1} $SOURCES'.format(
action='yosys -f verilog -p \"show -format dot -colors 1 -prefix hardware {0}\" {1} $SOURCES'.format(
YOSYS_TOP if YOSYS_TOP else 'unknown_top',
'' if VERBOSE_ALL else '-q'
),
Expand Down
2 changes: 1 addition & 1 deletion apio/resources/ice40/SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ iverilog = Builder(
env.Append(BUILDERS={'IVerilog': iverilog})

dot_builder = Builder(
action='yosys -p \"show -format dot -colors 1 -prefix hardware {0}\" {1} $SOURCES'.format(
action='yosys -f verilog -p \"show -format dot -colors 1 -prefix hardware {0}\" {1} $SOURCES'.format(
YOSYS_TOP if YOSYS_TOP else 'unknown_top',
'' if VERBOSE_ALL else '-q'
),
Expand Down

0 comments on commit 6965024

Please sign in to comment.