summaryrefslogtreecommitdiff
path: root/rtl/core/fetch/fetch.sv
diff options
context:
space:
mode:
Diffstat (limited to 'rtl/core/fetch/fetch.sv')
-rw-r--r--rtl/core/fetch/fetch.sv4
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;