URL
https://opencores.org/ocsvn/v586/v586/trunk
Subversion Repositories v586
[/] [v586/] [trunk/] [gate_rtl/] [notech_mux2.v] - Rev 123
Go to most recent revision | Compare with Previous | Blame | View Log
module notech_mux2 (A,B,Z,S); input A,B,S; output Z; assign Z = S ? B: A; endmodule
Go to most recent revision | Compare with Previous | Blame | View Log