diff options
author | Friedrich Beckmann <friedrich.beckmann@hs-augsburg.de> | 2024-05-27 17:32:24 +0200 |
---|---|---|
committer | Friedrich Beckmann <friedrich.beckmann@hs-augsburg.de> | 2024-05-27 21:04:01 +0200 |
commit | f780458e75d1e22742a091e8e9cf89009e91ee8a (patch) | |
tree | 1c344369707a3a43374434dc47d153b9b8492749 /src/uart_rx_shift.vhd | |
parent | 8c6f69e2fead5f85b8098bca6c1c4606676a880e (diff) |
uart rx
Diffstat (limited to 'src/uart_rx_shift.vhd')
-rw-r--r-- | src/uart_rx_shift.vhd | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/uart_rx_shift.vhd b/src/uart_rx_shift.vhd new file mode 100644 index 0000000..273931c --- /dev/null +++ b/src/uart_rx_shift.vhd @@ -0,0 +1,16 @@ +library ieee; +use ieee.std_logic_1164.all; + +entity uart_rx_shift is + port ( + clk : in std_ulogic; + rst_n : in std_ulogic; + shift_i : in std_ulogic; + ser_i : in std_ulogic; + d_o : out std_ulogic_vector(7 downto 0)); +end entity; + +architecture rtl of uart_rx_shift is +begin +end architecture rtl; + |