|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
Quartus编译时出现这个错误,该怎样修改
Error: Top-level design entity "demo" is undefined
module binaryToESeg(eSeg,A,B,C,D);
output eSeg;
input A,B,C,D;
nand #1
g1(p1,C,~D),
g2(p2,A,B),
g3(p3,~B,~D),
g4(p4,A,C),
g5(eSeg,p1,p2,p3,p4);
endmodule
程序是这样的,我已经将它设为顶层文件了 |
|