write_path_spice first line is comment
This commit is contained in:
parent
f0e5147122
commit
cb3ba357bb
|
|
@ -16,7 +16,7 @@
|
||||||
|
|
||||||
cmake_minimum_required (VERSION 3.9)
|
cmake_minimum_required (VERSION 3.9)
|
||||||
|
|
||||||
project(STA VERSION 2.0.7)
|
project(STA VERSION 2.0.8)
|
||||||
|
|
||||||
set(CMAKE_VERBOSE_MAKEFILE ON)
|
set(CMAKE_VERBOSE_MAKEFILE ON)
|
||||||
set(CMAKE_CXX_STANDARD 11)
|
set(CMAKE_CXX_STANDARD 11)
|
||||||
|
|
|
||||||
|
|
@ -8,3 +8,11 @@ Release 2.0 Patches
|
||||||
2018/12/25 liberty pg_types
|
2018/12/25 liberty pg_types
|
||||||
2019/01/03 liberty 2D bus names
|
2019/01/03 liberty 2D bus names
|
||||||
2019/01/07 WritePathSpice don't barf on spice subckts missing liberty cells
|
2019/01/07 WritePathSpice don't barf on spice subckts missing liberty cells
|
||||||
|
2019/01/15 generated clk -divide_by 16384 cycle accting
|
||||||
|
2019/01/18 write_path_spice ground coupling caps
|
||||||
|
2019/01/18 write_path_spice do not write zero caps
|
||||||
|
2019/01/19 write_path_spice tie-offs for demorgan'd nand/nor functs
|
||||||
|
2019/01/29 write_sdc set_driving_cell omit -library if missing from sdc
|
||||||
|
2019/01/31 generated clk -divide_by 16384 cycle accting fallout
|
||||||
|
2019/02/17 report_power internal power accuracy
|
||||||
|
2019/02/18 write_path_spice first line is comment
|
||||||
|
|
|
||||||
|
|
@ -312,6 +312,9 @@ WritePathSpice::writeHeader()
|
||||||
auto pvt = sdc_->operatingConditions(min_max);
|
auto pvt = sdc_->operatingConditions(min_max);
|
||||||
if (pvt == NULL)
|
if (pvt == NULL)
|
||||||
pvt = default_library_->defaultOperatingConditions();
|
pvt = default_library_->defaultOperatingConditions();
|
||||||
|
streamPrint(spice_stream_, "* Path to %s %s\n",
|
||||||
|
network_->pathName(path_->pin(this)),
|
||||||
|
path_->transition(this)->asString());
|
||||||
auto temp = pvt->temperature();
|
auto temp = pvt->temperature();
|
||||||
streamPrint(spice_stream_, ".temp %.1f\n", temp);
|
streamPrint(spice_stream_, ".temp %.1f\n", temp);
|
||||||
streamPrint(spice_stream_, ".include \"%s\"\n", model_filename_);
|
streamPrint(spice_stream_, ".include \"%s\"\n", model_filename_);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue