|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
求助,小弟刚开始接触DC和后仿的概念。看.lib.v文件中关于cell的定义,例如一个与门:`timescale 10ps / 1ps
//-- FTC standard cell revision 1.1 --//
`resetall
`timescale 10ps/1ps
`celldefine
module AN2(O, I1, I2);
output O;
input I1, I2;
//Function Block
`protect
and g1(O, I1,I2);
//Specify Block
specify
// Module Path Delay
(I1 *> O) = (6.08:8.74:15.81, 6.70:9.68:16.40);
(I2 *> O) = (6.21:8.97:16.34, 7.07:10.26:17.40);
endspecify
`endprotect
endmodule
`endcelldefine
我知道and g1(O, I1,I2);用逻辑运算符定义了O,I1,I2之间的关系,
但是这个(I1 *> O) = (6.08:8.74:15.81, 6.70:9.68:16.40);应该怎么理解?哪位大牛能解释一下这句话怎么定义了延迟?小弟拜谢了。 |
|