|  | 
 
| 
module uupp(out,a,b);
×
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册  output out;
 input a,b;
 up u1(out,a,b);//24行
 endmodule
 primitive up(out,a,b);
 output out;
 input a,b;
 table
 // a b : out;
 0 0 : 0;
 0 1 : 1;
 1 0 : 1;
 1 1 : 1;
 x 1 : 1;
 1 x : 1;
 endtable
 endprimitive
 错误提示如下
 ERROR:Xst:850 - "uupp.v" line 24: Unsupported Switch or User Defined Primitive.,
 求大神 解答,感激不尽
 | 
 |