URL
https://opencores.org/ocsvn/xulalx25soc/xulalx25soc/trunk
[/] [xulalx25soc/] [trunk/] [rtl/] [txuart.v] - Diff between revs 7 and 9
Go to most recent revision |
Show entire file |
Details |
Blame |
View Log
Rev 7 |
Rev 9 |
Line 146... |
Line 146... |
state <= `TXU_BREAK;
|
state <= `TXU_BREAK;
|
calc_parity <= 1'b0;
|
calc_parity <= 1'b0;
|
o_busy <= 1'b1;
|
o_busy <= 1'b1;
|
end else if (baud_counter != 0)
|
end else if (baud_counter != 0)
|
begin // o_busy needs to be set coming into here
|
begin // o_busy needs to be set coming into here
|
baud_counter <= baud_counter - 1;
|
baud_counter <= baud_counter - 28'h01;
|
o_busy <= 1'b1;
|
o_busy <= 1'b1;
|
end else if (state == `TXU_BREAK)
|
end else if (state == `TXU_BREAK)
|
begin
|
begin
|
state <= `TXU_IDLE;
|
state <= `TXU_IDLE;
|
o_busy <= 1'b1;
|
o_busy <= 1'b1;
|
© copyright 1999-2024
OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.