summaryrefslogtreecommitdiff
path: root/rtl/core/cp15/syscfg.sv
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2022-12-10 19:56:19 -0600
committerAlejandro Soto <alejandro@34project.org>2022-12-10 19:56:19 -0600
commit6b163a88179ac3073d22622be4991f332529c8bd (patch)
tree5333acb096d9af9a95a40c1b7703bc087134e3fa /rtl/core/cp15/syscfg.sv
parent8026947ecdf9b023c3720b26bf257bf46f7a2805 (diff)
Expose cp15 signals to core toplevel
Diffstat (limited to '')
-rw-r--r--rtl/core/cp15/syscfg.sv6
1 files changed, 4 insertions, 2 deletions
diff --git a/rtl/core/cp15/syscfg.sv b/rtl/core/cp15/syscfg.sv
index 599b682..d75f7ac 100644
--- a/rtl/core/cp15/syscfg.sv
+++ b/rtl/core/cp15/syscfg.sv
@@ -11,10 +11,12 @@ module core_cp15_syscfg
input cp_opcode op2,
input word write,
- output word read
+ output word read,
+ output logic high_vectors,
+ mmu_enable
);
- logic mmu_enable, dcache_enable, icache_enable, high_vectors;
+ logic dcache_enable, icache_enable;
cp15_syscfg_ctrl ctrl, write_ctrl;