URL
https://opencores.org/ocsvn/v586/v586/trunk
Subversion Repositories v586
[/] [v586/] [trunk/] [gate_rtl/] [notech_ao4.v] - Rev 121
Compare with Previous | Blame | View Log
module notech_ao4 (A,B,C,D,Z); input A,B,C,D; output Z; assign Z=(A|B)&(D|C); endmodule