Skip to content

Commit

Permalink
fixes copy and paste typos
Browse files Browse the repository at this point in the history
Signed-off-by: Ethan Mahintorabi <[email protected]>
  • Loading branch information
QuantamHD committed Aug 23, 2024
1 parent 778ef2d commit 1411c99
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion synthesis/build_defs.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def _synthesize_design_impl(ctx):
env[k] = v

ctx.actions.run(
outputs = [output_file, log_file],
outputs = [output_file, log_file, standard_cell_black_box],
inputs = inputs,
arguments = [args],
executable = ctx.executable.yosys_tool,
Expand Down
1 change: 1 addition & 0 deletions synthesis/synth.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ set srcs_flist_path $::env(FLIST)
set srcs_flist_file [open $srcs_flist_path "r"]
set srcs_flist_data [read $srcs_flist_file]
set srcs [split $srcs_flist_data "\n"]
set srcs [linsert $srcs 0 $::env(STANDARD_CELL_BLACK_BOX)]
puts $srcs
foreach src $srcs {
# Skip empty lines, including the implict one after the last \n delimiter
Expand Down

0 comments on commit 1411c99

Please sign in to comment.