aboutsummaryrefslogtreecommitdiff
path: root/src/uart_rx_shift.vhd
blob: 273931c9699351917a1b8ba3ff240d184c02a874 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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;