summaryrefslogtreecommitdiff
path: root/rtl/core/core_cp15_cache.sv
diff options
context:
space:
mode:
Diffstat (limited to 'rtl/core/core_cp15_cache.sv')
-rw-r--r--rtl/core/core_cp15_cache.sv15
1 files changed, 15 insertions, 0 deletions
diff --git a/rtl/core/core_cp15_cache.sv b/rtl/core/core_cp15_cache.sv
new file mode 100644
index 0000000..cb6d4ad
--- /dev/null
+++ b/rtl/core/core_cp15_cache.sv
@@ -0,0 +1,15 @@
+`include "core/uarch.sv"
+
+module core_cp15_cache
+(
+ input logic clk,
+ rst_n,
+
+ input logic load,
+ transfer,
+ input word write
+);
+
+ //TODO
+
+endmodule