diff options
author | Friedrich Beckmann <friedrich.beckmann@hs-augsburg.de> | 2024-06-17 09:03:04 +0200 |
---|---|---|
committer | Friedrich Beckmann <friedrich.beckmann@hs-augsburg.de> | 2024-06-17 09:03:04 +0200 |
commit | 371da1e007d7e17d11707534f13abf747638bc8f (patch) | |
tree | 75c8d3183b2c0cd0222bc702a80cd66e9470a0ed /src/rxautomat.vhd | |
parent | aa054291a7f4eaf136d228d851354bd879fd8fe1 (diff) |
Diffstat (limited to 'src/rxautomat.vhd')
-rw-r--r-- | src/rxautomat.vhd | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/rxautomat.vhd b/src/rxautomat.vhd new file mode 100644 index 0000000..3ce19de --- /dev/null +++ b/src/rxautomat.vhd @@ -0,0 +1,22 @@ +library ieee; +use ieee.std_logic_1164.all; +use ieee.numeric_std.all; + +entity rxautomat is + port ( + clk : in std_ulogic; + rst_n : in std_ulogic; + rxchar : in std_ulogic_vector(7 downto 0); + rxchar_valid : in std_ulogic; + led0_o : out std_ulogic_vector(3 downto 0); + led1_o : out std_ulogic_vector(3 downto 0); + led2_o : out std_ulogic_vector(3 downto 0); + led3_o : out std_ulogic_vector(3 downto 0); + send_ok_o : out std_ulogic); +end entity; + +architecture rtl of rxautomat is +begin + +end architecture rtl; + |