`timescale 1ns / 100ps module counter_16 ( clock, enable, count, reset ); parameter BIT_SZ = 16; input clock; input enable; input reset; output reg [BIT_SZ-1:0] count; initial count = 0; always @ (posedge clock) if (reset == 1'b0) count <= 0; else if (enable == 1'b0) count <= count + 1'b1; endmodule