diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-12-10 19:56:19 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-12-10 19:56:19 -0600 |
| commit | 6b163a88179ac3073d22622be4991f332529c8bd (patch) | |
| tree | 5333acb096d9af9a95a40c1b7703bc087134e3fa /rtl/core/cp15/syscfg.sv | |
| parent | 8026947ecdf9b023c3720b26bf257bf46f7a2805 (diff) | |
Expose cp15 signals to core toplevel
Diffstat (limited to '')
| -rw-r--r-- | rtl/core/cp15/syscfg.sv | 6 |
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; |
