diff options
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; + |