mirror of
https://github.com/openhwgroup/cve2.git
synced 2025-04-22 21:17:59 -04:00
Prevent sleep mode on debug request
Debug requests are essentially interrupts and we need to prevent sleep (or wake up the core) if we get a debug request.
This commit is contained in:
parent
672929a9b7
commit
bae56557e9
1 changed files with 1 additions and 1 deletions
|
@ -216,7 +216,7 @@ module ibex_core #(
|
|||
|
||||
assign core_busy = core_ctrl_firstfetch ? 1'b1 : core_busy_q;
|
||||
|
||||
assign clock_en = core_busy | irq_i;
|
||||
assign clock_en = core_busy | irq_i | debug_req_i;
|
||||
|
||||
assign sleeping = (~core_busy);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue