top.v 96 Bytes
Newer Older
1 2 3 4
module top (input wire x, input wire y, output reg z);
   always @*
     z <= x ~& y;
endmodule