top.v 154 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
module top(A, clk, rst);
   input clk, rst;
   output A;

   always @(posedge clk, posedge rst) begin
      A <= '0';
   end;  // << like this

endmodule