- minor fix
git-svn-id: http://moon:8086/svn/vhdl/trunk@1251 cc03376c-175c-47c8-b038-4cd826a8556b
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user