aboutsummaryrefslogtreecommitdiffstats
path: root/tests/simple/omsp_dbg_uart.v
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2015-07-02 11:14:30 +0200
committerClifford Wolf <clifford@clifford.at>2015-07-02 11:14:30 +0200
commit6c84341f22b2758181164e8d5cddd23e3589c90b (patch)
tree0438ad9becf956e43ebf8665fee89e021b13bcdf /tests/simple/omsp_dbg_uart.v
parent053058d78167f7f1ec377fddcee8b648a5ae4138 (diff)
downloadyosys-6c84341f22b2758181164e8d5cddd23e3589c90b.tar.gz
yosys-6c84341f22b2758181164e8d5cddd23e3589c90b.tar.bz2
yosys-6c84341f22b2758181164e8d5cddd23e3589c90b.zip
Fixed trailing whitespaces
Diffstat (limited to 'tests/simple/omsp_dbg_uart.v')
-rw-r--r--tests/simple/omsp_dbg_uart.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/simple/omsp_dbg_uart.v b/tests/simple/omsp_dbg_uart.v
index dc8860dee..569a28adb 100644
--- a/tests/simple/omsp_dbg_uart.v
+++ b/tests/simple/omsp_dbg_uart.v
@@ -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