diff options
Diffstat (limited to 'src/uart_rx.vhd')
-rw-r--r-- | src/uart_rx.vhd | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/uart_rx.vhd b/src/uart_rx.vhd new file mode 100644 index 0000000..616b181 --- /dev/null +++ b/src/uart_rx.vhd @@ -0,0 +1,17 @@ +library ieee; +use ieee.std_logic_1164.all; + +entity uart_rx is + port ( + clk : in std_ulogic; + rst_n : in std_ulogic; + uart_rxd_i : in std_ulogic; + rxd_o : out std_ulogic_vector(7 downto 0); + dv_o : out std_ulogic); +end entity; + +architecture rtl of uart_rx is +begin + +end architecture rtl; + |