aboutsummaryrefslogtreecommitdiff
path: root/src/txautomat.vhd
diff options
context:
space:
mode:
Diffstat (limited to 'src/txautomat.vhd')
-rw-r--r--src/txautomat.vhd18
1 files changed, 18 insertions, 0 deletions
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;
+