icetime docs

This commit is contained in:
Clifford Wolf 2016-01-17 11:51:04 +01:00
parent 7902d3ac3d
commit cb7836866e
2 changed files with 10 additions and 2 deletions

View File

@ -132,6 +132,13 @@ that has blocks of <span style="font-family:monospace">0</span> and <span style=
<span style="font-family:monospace">icepack</span> program converts such an ASCII file back to an iCE40 <span style="font-family:monospace">.bin</span> file.
</p>
<h3>IceTime</h3>
<p>
The <span style="font-family:monospace">icetime</span> program is an iCE40 timing analysis tool. It reads designs in IceBox ASCII format and writes times timing
netlists that can be used in external timing analysers. It also includes a simple topological timing analyser that can be used to create timing reports.
</p>
<h3>IceBox</h3>
<p>
@ -398,7 +405,7 @@ e.g. using the following BibTeX code:
<p>
<i>Documentation mostly by Clifford Wolf &lt;clifford@clifford.at&gt; in 2015. Based on research by Mathias Lasser and Clifford Wolf.<br/>
Buy an <a href="http://www.latticesemi.com/icestick">iCEstick</a> from Lattice and see what you can do with the information provided here. Buy a few because you might break some..</i>
Buy an <a href="http://www.latticesemi.com/icestick">iCEstick</a> from Lattice and see what you can do with the information provided here.</i>
</p>
</body></html>

View File

@ -261,7 +261,8 @@ for filename in txt_inputs:
# Filter database
for celltype in ignore_cells:
del database[celltype]
if celltype in database:
del database[celltype]
###########################################