From 371da1e007d7e17d11707534f13abf747638bc8f Mon Sep 17 00:00:00 2001 From: Friedrich Beckmann Date: Mon, 17 Jun 2024 09:03:04 +0200 Subject: add txautomat and rxautomat --- src/txautomat.vhd | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/txautomat.vhd (limited to 'src/txautomat.vhd') diff --git a/src/txautomat.vhd b/src/txautomat.vhd new file mode 100644 index 0000000..7ec2b91 --- /dev/null +++ b/src/txautomat.vhd @@ -0,0 +1,18 @@ +library ieee; +use ieee.std_logic_1164.all; +use ieee.numeric_std.all; + +entity txautomat is + port ( + clk : in std_ulogic; + rst_n : in std_ulogic; + start_ok_i : in std_ulogic + txchar_o : out std_ulogic_vector(7 downto 0); + txchar_valid_o : out std_ulogic); +end entity; + +architecture rtl of txautomat is +begin + +end architecture rtl; + -- cgit v1.2.3