library verilog;
use verilog.vl_types.all;
entity counter is
    generic(
        tpd_clk_to_count: integer := 1;
        tpd_reset_to_count: integer := 1
    );
    port(
        count           : out    vl_logic_vector(7 downto 0);
        clk             : in     vl_logic;
        rst             : in     vl_logic
    );
    attribute mti_svvh_generic_type : integer;
    attribute mti_svvh_generic_type of tpd_clk_to_count : constant is 1;
    attribute mti_svvh_generic_type of tpd_reset_to_count : constant is 1;
end counter;
