diff --git a/lib/uart/uart_wb.vhd b/lib/uart/uart_wb.vhd index f5acad0..f4f9fad 100644 --- a/lib/uart/uart_wb.vhd +++ b/lib/uart/uart_wb.vhd @@ -7,6 +7,7 @@ ENTITY uart_wb IS ( CLK_I : in STD_LOGIC; RST_I : in STD_LOGIC; + INT_O : out STD_LOGIC; CYC_I : in STD_LOGIC; STB_I : in STD_LOGIC; SEL_I : in unsigned(3 downto 0); @@ -17,7 +18,6 @@ ENTITY uart_wb IS ADDR_I : in unsigned(31 downto 0); DAT_I : in unsigned(31 downto 0); DAT_O : out unsigned(31 downto 0); - INT_O : out STD_LOGIC; ser_rx : in std_logic; ser_tx : out std_logic );