/and2/and2.sv
http://camlet.googlecode.com/ · SystemVerilog · 8 lines · 7 code · 1 blank · 0 comment · 1 complexity · c3c27c4f90616348ecd9d7b3f276d35a MD5 · raw file
- module and2(Y, A, B);
- input A, B;
- output Y;
- reg Y;
- always @(A or B)
- Y = #1 A & B;
- endmodule