From cb7836866e02bf86205b1120a4093f49a9571e44 Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Sun, 17 Jan 2016 11:51:04 +0100 Subject: icetime docs --- docs/index.html | 9 ++++++++- icefuzz/timings.py | 3 ++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/docs/index.html b/docs/index.html index d8e676e..446b855 100644 --- a/docs/index.html +++ b/docs/index.html @@ -132,6 +132,13 @@ that has blocks of 0 and icepack program converts such an ASCII file back to an iCE40 .bin file.

+

IceTime

+ +

+The icetime 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. +

+

IceBox

@@ -398,7 +405,7 @@ e.g. using the following BibTeX code:

Documentation mostly by Clifford Wolf <clifford@clifford.at> in 2015. Based on research by Mathias Lasser and Clifford Wolf.
-Buy an iCEstick from Lattice and see what you can do with the information provided here. Buy a few because you might break some..
+Buy an iCEstick from Lattice and see what you can do with the information provided here.

diff --git a/icefuzz/timings.py b/icefuzz/timings.py index 75215d5..51d99f4 100644 --- a/icefuzz/timings.py +++ b/icefuzz/timings.py @@ -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] ########################################### -- cgit v1.2.3