forked from TinyTapeout/tt-support-tools
-
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
htfab
committed
Sep 24, 2024
1 parent
dd77f85
commit bcbca89
Showing
19 changed files
with
4,035 additions
and
48 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 |
---|---|---|
@@ -0,0 +1,67 @@ | ||
{ | ||
"categories" : [ | ||
"AND", | ||
"OR", | ||
"NAND", | ||
"NOR", | ||
"Clock", | ||
"Flip Flops", | ||
"Multiplexer", | ||
"Latch", | ||
"Inverter", | ||
"Buffer", | ||
"Fill", | ||
"Tap", | ||
"Diode", | ||
"Combo Logic", | ||
"Misc" | ||
], | ||
"map" : { | ||
"a21o" : 13, | ||
"a21oi" : 13, | ||
"a22oi" : 13, | ||
"a221oi" : 13, | ||
"and2" : 0, | ||
"and3" : 0, | ||
"and4" : 0, | ||
"antennanp" : 12, | ||
"buf" : 9, | ||
"decap" : 10, | ||
"dfrbp" : 5, | ||
"dlhq" : 7, | ||
"dlhr" : 7, | ||
"dlhrq" : 7, | ||
"dllr" : 7, | ||
"dllrq" : 7, | ||
"dlygate4sd1" : 14, | ||
"dlygate4sd2" : 14, | ||
"dlygate4sd3" : 14, | ||
"ebufn" : 14, | ||
"einvn" : 14, | ||
"fill" : 10, | ||
"inv" : 8, | ||
"lgcp" : 4, | ||
"mux2" : 6, | ||
"mux4" : 6, | ||
"nand2" : 2, | ||
"nand2b" : 2, | ||
"nand3" : 2, | ||
"nand3b" : 2, | ||
"nand4" : 2, | ||
"nor2" : 3, | ||
"nor2b" : 3, | ||
"nor3" : 3, | ||
"nor4" : 3, | ||
"o21ai" : 13, | ||
"or2" : 1, | ||
"or3" : 1, | ||
"or4" : 1, | ||
"sdfbbp" : 5, | ||
"sighold" : 14, | ||
"slgcp" : 4, | ||
"tiehi" : 14, | ||
"tielo" : 14, | ||
"xnor2" : 3, | ||
"xor2" : 1 | ||
} | ||
} |
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,13 @@ | ||
set clk_name core_clock | ||
set clk_port_name clk | ||
set clk_period 20 | ||
set clk_io_pct 0.2 | ||
|
||
set clk_port [get_ports $clk_port_name] | ||
|
||
create_clock -name $clk_name -period $clk_period $clk_port | ||
|
||
set non_clock_inputs [lsearch -inline -all -not -exact [all_inputs] $clk_port] | ||
|
||
set_input_delay [expr $clk_period * $clk_io_pct] -clock $clk_name $non_clock_inputs | ||
set_output_delay [expr $clk_period * $clk_io_pct] -clock $clk_name [all_outputs] |
Oops, something went wrong.