|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
gatedelay.v
module gatedelay(in1, in2, out_and, out_or, out_xor, out_xnor, out_buf, out_not);
//I/O ports
input in1, in2;
output out_and, out_or, out_xor, out_xnor, out_buf, out_not;
//Logic gates inst
and (out_and, in1, in2);
or (out_or, in1, in2);
xor (out_xor, in1, in2);
xnor (out_xnor, in1, in2);
buf (out_buf, in1);
not (out_not, in1);
endmodule
我看到有些书上的例子中有使用好像原语,如上所示。
1、请问这些原语在哪有详细说明呢 |
|