sdfファイル反転


方法1


makefileで呼び出され、次のコマンド+neg_tchk -negdelay -sdf max:t_all_xx.i_all_xx:./all_xx.sdf注意パスとmax/minを使用して上記のコマンドを選択します.sdfファイルとmakefileは同じフォルダにあります.

方法2


テストプラットフォームにsdfファイルをロードする
`ifdef SDF
initial
begin
  $sdf_annotate("../../rtl/post_sim/U_sramc.sdf",u_top,,"sdf.log",);
end
`endif

$sdf_annotate("sdf_file"):sdfファイルを設計に読み込みます.
$sdf_annotate関数の宣言:$sdf_annotate(“sdf_file”[, module_instance] [, “sdf_configfile”] [, “sdf_logfile”] [, “mtm_spec”] [, “scale_factors”] [, “scale_type”]);
オプションのパラメータ:
  • module_instance(デフォルトの現在のモジュール)、
  • log_file(出力logの名前を指定)、
  • mtm_spec(min/typ/max反標種類)、
  • scale_factor(scale因子)、
  • scale_type(scaleはmin/typ/maxで選択).