aboutsummaryrefslogtreecommitdiff
path: root/src/uart_tx_shift.vhd
blob: b81fe78c9c1e4c282926e67cb36814f73406191b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
library ieee;
use ieee.std_logic_1164.all;

entity uart_tx_shift is
  port (
    clk     : in std_ulogic;
    rst_n   : in std_ulogic;
    start_i : in std_ulogic;
    en_i    : in std_ulogic;
    d_i     : in std_ulogic_vector(7 downto 0);
    tx_o    : out std_ulogic);
end entity;

architecture rtl of uart_tx_shift is
begin

end architecture rtl;