aboutsummaryrefslogtreecommitdiff
path: root/src/cnt1sec.vhd
blob: a722ff9e15f88eb7378f420ffe21e981bd0f3101 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;

entity cnt1sec is
  port (
    clk   : in std_ulogic;
    rst_n : in std_ulogic;
    en_o  : out std_ulogic);
end entity;

architecture rtl of cnt1sec is
begin

end architecture rtl;