|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
module NOR(a,b,out);
input a,b;
output out;
electrical a,b,out;
parameter real td=0 from [0:inf];
parameter real tr=0 from[0:inf];
parameter real Vdd=1.2 from(0:inf);
integer state;
analog begin
state=(V(a)!=V(b));
V(out)<+transition(Vdd*state,td,tr);
end
endmodul
出现问题是显示
*Error* index: argument #1 should be a string (type template = "tS") - nil
*WARNING* (DB-270212): dbOpenCellViewByType: Failed to open cellview (NOR symbol) from lib (cds_dyf) in 'r' mode because cellView database does not exist, or cellview type is not recognized by dbOpenCellViewByType.
*Error* dbSave: argument #1 should be a database object (type template = "dggggg") - nil
*WARNING* (TE-4309): Extract failed for cellview 'cds_dyf NOR veriloga' |
|