diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-12-11 23:54:38 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-12-16 16:29:10 -0600 |
| commit | 79e05aa7f0ccce6eb26248ddef3e928727857a9c (patch) | |
| tree | 8c67d6532234dac0eace7f005638efc8441105a5 /rtl/core/control/control.sv | |
| parent | 0284628a47d5b4797c89f6846b9efee3f1243b94 (diff) | |
Implement prefetch aborts
Diffstat (limited to 'rtl/core/control/control.sv')
| -rw-r--r-- | rtl/core/control/control.sv | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rtl/core/control/control.sv b/rtl/core/control/control.sv index 8bf4976..840cf19 100644 --- a/rtl/core/control/control.sv +++ b/rtl/core/control/control.sv @@ -9,6 +9,7 @@ module core_control input insn_decode dec, input ptr insn_pc, + input logic issue_abort, input psr_mode mode, input psr_flags flags, alu_flags, @@ -89,7 +90,7 @@ module core_control ); ptr pc /*verilator public*/, next_pc_visible; - logic issue, undefined; + logic issue, undefined, prefetch_abort; core_control_issue ctrl_issue ( |
