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/fetch/fetch.sv | |
| parent | 0284628a47d5b4797c89f6846b9efee3f1243b94 (diff) | |
Implement prefetch aborts
Diffstat (limited to '')
| -rw-r--r-- | rtl/core/fetch/fetch.sv | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/rtl/core/fetch/fetch.sv b/rtl/core/fetch/fetch.sv index ba9d677..279d2c2 100644 --- a/rtl/core/fetch/fetch.sv +++ b/rtl/core/fetch/fetch.sv @@ -6,6 +6,7 @@ module core_fetch input logic clk, rst_n, stall, + fault, fetched, explicit_branch /*verilator public*/ /*verilator forceable*/, wr_pc, @@ -21,7 +22,8 @@ module core_fetch output word insn, output ptr insn_pc, addr, - fetch_head + fetch_head, + output logic insn_abort ); ptr target /*verilator public*/ /*verilator forceable*/, hold_addr; |
