马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
请问下面这种情况innovus怎么添加tie cell呢?
一个module如下定义:
module top(SIN1, SIN2, EN_1, EN_2, P_1, P_2)
input SIN1;
input SIN2;
input EN_1;
input EN_2;
output P_1;
output P_2;
test t_1 (.S1(SIN1), .S2( {1'b1, EN_1), .E1(。。。
....一些库定义的单元
end module
module test ( S1, S2, E1, E2)
input S1[1:0];
input S2[1:0];
input E1;
output E2;
end module
|