module or_gate( a,b,c,d,y );
input a,b,c,d;
output y;
assign y=a|b|c|d;
endmodule
FPGA 四或门
最新推荐文章于 2024-04-24 00:15:00 发布
module or_gate( a,b,c,d,y );
input a,b,c,d;
output y;
assign y=a|b|c|d;
endmodule