|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
用mentor 的libcomp工具转verilog library 成 atpg library过程如下:
load library smic18.v
add model -all
set system mode translation
run
write library smic18.atpg
虽然工具生成了smic18.atpg库文件,后来在dftadvisor工具中
使用该atpg库去生成扫描链,工具始终不能把nos-scan cell 替换
scan cell,仔细查找原因,后来找出了原来是转换的atpg库有问题.
如dff 和 sdff是一对 non scan cell 与 scan cell的关系,
但是sdff 的model中没有
scan_definition
type
scan_in=si
scan_enable=se
scan_out=Q,QB
定义
那么工具认为库里没有scan-cell单元,所以没法生成扫描链.
请问需要操作能是scan cells 才能生成scan_definition
这段定义. |
|