diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-11-01 21:50:18 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-11-01 23:04:24 -0600 |
| commit | c14209fa2a72d62e06a5480b3652fe4680978349 (patch) | |
| tree | 11ddb19c0e1d2b3d5a91b9030a85b0310abb3f71 /rtl/core/cp15/cp15.sv | |
| parent | 735c804c8e8e4bdcbe27c2e8ff74d609d7f45846 (diff) | |
Add the cp15 subsystem
Diffstat (limited to '')
| -rw-r--r-- | rtl/core/cp15/cp15.sv | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/rtl/core/cp15/cp15.sv b/rtl/core/cp15/cp15.sv new file mode 100644 index 0000000..b31ccb7 --- /dev/null +++ b/rtl/core/cp15/cp15.sv @@ -0,0 +1,13 @@ +`include "core/uarch.sv" + +module core_cp15 +( + input logic clk, + transfer, + input coproc_decode dec, + input word write, + + output word read +); + +endmodule |
