top.v 231 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
module top(
  input wire clock
);

localparam COUNT = 1600;

reg buffer[0:COUNT-1];

always @(posedge clock) begin : GENERATE
  integer ii;

  for(ii = 0; ii < COUNT; ii = ii + 1) begin
    buffer[ii] <= 1'b0;
  end
end

endmodule