|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
我在运行这个程序的时候
module binaryToESeg(eSeg,A,B,C,D);
output eSeg;
input A,B,C,D;
wire eSeg,p1,p2,p3,p4;
wire 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
出现这样的错误
Error: Current license file does not support the EP1S10B672C6 device
请问在选择器件时应该注意些什么呢? |
|