summaryrefslogtreecommitdiff
path: root/rtl/core/arm810.sv
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2022-11-01 21:50:18 -0600
committerAlejandro Soto <alejandro@34project.org>2022-11-01 23:04:24 -0600
commitc14209fa2a72d62e06a5480b3652fe4680978349 (patch)
tree11ddb19c0e1d2b3d5a91b9030a85b0310abb3f71 /rtl/core/arm810.sv
parent735c804c8e8e4bdcbe27c2e8ff74d609d7f45846 (diff)
Add the cp15 subsystem
Diffstat (limited to 'rtl/core/arm810.sv')
-rw-r--r--rtl/core/arm810.sv12
1 files changed, 12 insertions, 0 deletions
diff --git a/rtl/core/arm810.sv b/rtl/core/arm810.sv
index 6e4b777..71233a3 100644
--- a/rtl/core/arm810.sv
+++ b/rtl/core/arm810.sv
@@ -137,4 +137,16 @@ module arm810
.*
);
+ logic coproc;
+ word coproc_read, coproc_write;
+
+ core_cp15 cp15
+ (
+ .transfer(coproc),
+ .dec(dec_coproc),
+ .read(coproc_read),
+ .write(coproc_write),
+ .*
+ );
+
endmodule