mirror of
https://github.com/YosysHQ/yosys
synced 2025-09-04 17:17:43 +00:00
Fixed trailing whitespaces
This commit is contained in:
parent
053058d781
commit
6c84341f22
195 changed files with 729 additions and 729 deletions
|
@ -22,13 +22,13 @@ always @(uart_state or mem_burst)
|
|||
RX_DATA : uart_state_nxt = RX_SYNC;
|
||||
default : uart_state_nxt = RX_CMD;
|
||||
endcase
|
||||
|
||||
|
||||
always @(posedge dbg_clk or posedge dbg_rst)
|
||||
if (dbg_rst) uart_state <= RX_SYNC;
|
||||
else if (xfer_done | mem_burst) uart_state <= uart_state_nxt;
|
||||
|
||||
assign cmd_valid = (uart_state==RX_CMD) & xfer_done;
|
||||
assign xfer_done = uart_state!=RX_SYNC;
|
||||
|
||||
|
||||
endmodule
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue