forked from parallaxsw/OpenSTA
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
150 additions
and
294 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
# Test get_* -filter | ||
|
||
# Read in design and libraries | ||
read_liberty asap7_small.lib.gz | ||
read_verilog reg1_asap7.v | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
Warning: liberty_arcs_one2one_1.lib line 48, timing port A and related port Y are different sizes. | ||
report_edges -from partial_wide_inv_cell/A[0] | ||
A[0] -> Y[0] combinational | ||
^ -> v 1.00:1.00 | ||
v -> ^ 1.00:1.00 | ||
report_edges -from partial_wide_inv_cell/A[1] | ||
A[1] -> Y[1] combinational | ||
^ -> v 1.00:1.00 | ||
v -> ^ 1.00:1.00 | ||
report_edges -from partial_wide_inv_cell/A[2] | ||
A[2] -> Y[2] combinational | ||
^ -> v 1.00:1.00 | ||
v -> ^ 1.00:1.00 | ||
report_edges -from partial_wide_inv_cell/A[3] | ||
A[3] -> Y[3] combinational | ||
^ -> v 1.00:1.00 | ||
v -> ^ 1.00:1.00 | ||
report_edges -from partial_wide_inv_cell/A[4] | ||
report_edges -from partial_wide_inv_cell/A[5] | ||
report_edges -from partial_wide_inv_cell/A[6] | ||
report_edges -from partial_wide_inv_cell/A[7] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Test one-to-one functionality with mismatched widths where A width (8) is larger than Y width (4) | ||
read_liberty liberty_arcs_one2one_1.lib | ||
read_verilog liberty_arcs_one2one_1.v | ||
link_design liberty_arcs_one2one_1 | ||
create_clock -name clk -period 0 | ||
set_input_delay -clock clk 0 [all_inputs] | ||
set_output_delay -clock clk 0 [all_outputs] | ||
for {set i 0} {$i < 8} {incr i} { | ||
puts "report_edges -from partial_wide_inv_cell/A[$i]" | ||
report_edges -from partial_wide_inv_cell/A[$i] | ||
} |
Oops, something went wrong.