From 34b05078c4efab6a57e4f7d509596f620ce4e818 Mon Sep 17 00:00:00 2001 From: Jens Ahrensfeld Date: Wed, 27 May 2015 20:26:11 +0000 Subject: [PATCH] - minor fix git-svn-id: http://moon:8086/svn/vhdl/trunk@1251 cc03376c-175c-47c8-b038-4cd826a8556b --- lib/uart/uart_xil.vhd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/uart/uart_xil.vhd b/lib/uart/uart_xil.vhd index 1ad2ce7..989bd55 100644 --- a/lib/uart/uart_xil.vhd +++ b/lib/uart/uart_xil.vhd @@ -42,6 +42,7 @@ baud_timer: process(clk) begin if rising_edge(clk) then + en_16_x_baud <= '0'; if rst = '1' then baud_count <= (others => '0'); elsif baud_count = ctrl.baudrate then @@ -49,7 +50,6 @@ begin en_16_x_baud <= '1'; else baud_count <= baud_count + 1; - en_16_x_baud <= '0'; end if; end if; end process;