mirror of
https://github.com/lowRISC/ibex.git
synced 2025-04-24 05:47:36 -04:00
new wfi behaviour
This commit is contained in:
parent
c458439ed7
commit
0d782ba417
2 changed files with 2 additions and 5 deletions
|
@ -254,10 +254,7 @@ module zeroriscy_controller
|
|||
|
||||
end else begin
|
||||
// no debug request incoming, normal execution flow
|
||||
if (irq_req_ctrl_i)
|
||||
begin
|
||||
ctrl_fsm_ns = FIRST_FETCH;
|
||||
end
|
||||
ctrl_fsm_ns = FIRST_FETCH;
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -260,7 +260,7 @@ module zeroriscy_core
|
|||
|
||||
assign dbg_busy = dbg_req | dbg_csr_req | dbg_jump_req | dbg_reg_wreq | debug_req_i;
|
||||
|
||||
assign clock_en = core_busy | dbg_busy | (irq_i & m_irq_enable);
|
||||
assign clock_en = core_busy | dbg_busy | irq_i;
|
||||
|
||||
assign sleeping = (~core_busy);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue