probe.tcl 常用指令选项
probe -create top.i1.i2.net3
保存节点i1.i2.net3这根信号的电压
probe -create -flow top.i1.i2.portA
保存portA的电流
probe -create -noaicms top.i1.i2
保存top.i1.i2下的所有端口和信号的电压和电流
probe -create -noaicms -depth 2 top.i1
使用-depth选项保存部分选项 此条指令用于保存top.i1的所有端口和信号
probe -create -noaicms -depth 2 -flow -ports top.i1
使用-ports 选项保存端口信号
probe -create -noaicms [find -rec 1 -scope top.il -ports *out]
使用-find选项保存top.i1这层电路下的带out后缀的输出端口信号 -rec 1 指当前层,从top.i1往下追溯1层
set inst_scope [find -instances -rec 1 -absolute -newline i*
foreach {inst} $inst_scope {catch {probe -create -noaicms [find -scope $inst -ports *out]}}
先找到inst 所有带i前缀的scope 再将这些inst的带out后缀的端口信号保存
probe.tcl常用选项指令
于 2024-11-30 16:13:29 首次发布