mirror of
https://github.com/openhwgroup/cve2.git
synced 2025-04-24 05:57:28 -04:00
Strip trailing whitespace
This commit is contained in:
parent
b227723ff5
commit
153c009090
1 changed files with 6 additions and 6 deletions
|
@ -359,7 +359,7 @@ module riscv_controller
|
|||
begin
|
||||
dbg_ack_o = 1'b1;
|
||||
halt_if_o = 1'b1;
|
||||
|
||||
|
||||
ctrl_fsm_ns = DBG_WAIT;
|
||||
end
|
||||
|
||||
|
@ -367,7 +367,7 @@ module riscv_controller
|
|||
begin
|
||||
dbg_ack_o = 1'b1;
|
||||
halt_if_o = 1'b1;
|
||||
|
||||
|
||||
ctrl_fsm_ns = DBG_WAIT_SLEEP;
|
||||
end
|
||||
|
||||
|
@ -418,19 +418,19 @@ module riscv_controller
|
|||
FLUSH_WB:
|
||||
begin
|
||||
halt_if_o = 1'b1;
|
||||
|
||||
|
||||
if(fetch_enable_i) begin
|
||||
if (dbg_req_i) begin
|
||||
ctrl_fsm_ns = DBG_SIGNAL;
|
||||
end else begin
|
||||
ctrl_fsm_ns = DECODE;
|
||||
halt_if_o = 1'b0;
|
||||
ctrl_fsm_ns = DECODE;
|
||||
halt_if_o = 1'b0;
|
||||
end
|
||||
end else begin
|
||||
if (dbg_req_i) begin
|
||||
ctrl_fsm_ns = DBG_SIGNAL_SLEEP;
|
||||
end else begin
|
||||
ctrl_fsm_ns = SLEEP;
|
||||
ctrl_fsm_ns = SLEEP;
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue