集成电路技术分享

 找回密码
 我要注册

QQ登录

只需一步,快速开始

搜索
查看: 1526|回复: 0

cmos(e,d,clk,nclk)语句不能综合,求指点。

[复制链接]
lkwendy 发表于 2011-8-2 15:12:24 | 显示全部楼层 |阅读模式
module my_not(out,in);
input in;
output out;

supply1 pwr;
supply0 gnd;

nmos(out,gnd,in);
pmos(out,pwr,in);

endmodule


//顶层模块
module cff(clk,d,q,qbar);
input clk,d ;
output q ,qbar;

wire e, nclk;

my_not nt(nclk,clk);

cmos (e,d,clk,nclk);
cmos (e,q,nclk,clk);

my_not nt1(qbar,e);
my_not nt2(q,qbar);

endmodule
为什么编译的时候会出现这样的错误:Error (10014): Verilog HDL unsupported feature error at file "cff.v" (line 9): cannot synthesize MOS switch gate primitive。也就是指coms(e,d clk,nclk);不能综合。请问哪位大侠知道吗?求指点。
您需要登录后才可以回帖 登录 | 我要注册

本版积分规则

关闭

站长推荐上一条 /1 下一条

QQ|小黑屋|手机版|Archiver|fpga论坛|fpga设计论坛 ( 京ICP备20003123号-1 )

GMT+8, 2025-6-24 04:09 , Processed in 0.067122 second(s), 19 queries .

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表