|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
- module MOS
- ( out,
- Write_Req,
- Read_Req);
- output out;
- input Write_Req;
- input Read_Req;
- wire Write_Req;
- wire Read_Req;
- wire conrol;
- supply1 pwr;
- assign control =Write_Req && Read_Req;
- nmos n1(out,pwr,control);
- endmodule
复制代码
然后就会出现
想请教大神们这是怎么回事啊。。。 |
|