diff options
author | Friedrich Beckmann <friedrich.beckmann@hs-augsburg.de> | 2024-05-14 16:21:25 +0200 |
---|---|---|
committer | Friedrich Beckmann <friedrich.beckmann@hs-augsburg.de> | 2024-05-14 16:21:25 +0200 |
commit | 1b09cc725908bbec8ec2e416ebeb09d8a84ac2a6 (patch) | |
tree | 31986ff7695371834515177ded0f61af509e0df3 /src/baudcnt.vhd | |
parent | 1f690b5ea2be1cfc6290b7d5539effd001cde5e5 (diff) |
add top_uart
Diffstat (limited to 'src/baudcnt.vhd')
-rw-r--r-- | src/baudcnt.vhd | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/baudcnt.vhd b/src/baudcnt.vhd new file mode 100644 index 0000000..4e18aa7 --- /dev/null +++ b/src/baudcnt.vhd @@ -0,0 +1,16 @@ +library ieee; +use ieee.std_logic_1164.all; + +entity baudcnt is + port ( + clk : in std_ulogic; + rst_n : in std_ulogic; + start_i : in std_ulogic; + en_o : out std_ulogic); +end entity; + +architecture rtl of baudcnt is +begin + +end architecture rtl; + |