From 6a777f0b8668520f8c6988637d0955150da4c864 Mon Sep 17 00:00:00 2001 From: Jens Ahrensfeld Date: Wed, 27 May 2015 19:05:25 +0000 Subject: [PATCH] - set TX-half full (S/W depends on it) git-svn-id: http://moon:8086/svn/vhdl/trunk@1250 cc03376c-175c-47c8-b038-4cd826a8556b --- lib/uart/uart_wb.vhd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/uart/uart_wb.vhd b/lib/uart/uart_wb.vhd index 00b9fdd..20abe0d 100644 --- a/lib/uart/uart_wb.vhd +++ b/lib/uart/uart_wb.vhd @@ -145,7 +145,7 @@ irq_register: end if; end process; - uart_status_port <= "000000" & irq_rx & irq_tx & '0' & rx_int_en & tx_int_en & status.rx_present & '0' & '0' & status.tx_full & '0' ; + uart_status_port <= "000000" & irq_rx & irq_tx & '0' & rx_int_en & tx_int_en & status.rx_present & '0' & '0' & status.tx_full & status.tx_full; INT_O <= irq_rx or irq_tx;