top_fault.v 75 Bytes
Newer Older
1 2 3 4
module top(input en, output reg y);
  always @*
    y = en & !y;
endmodule