- minor fix

git-svn-id: http://moon:8086/svn/vhdl/trunk@1251 cc03376c-175c-47c8-b038-4cd826a8556b
This commit is contained in:
2015-05-27 20:26:11 +00:00
parent 6a777f0b86
commit 34b05078c4
+1 -1
View File
@@ -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;