diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-12-09 00:32:34 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-12-09 00:36:44 -0600 |
| commit | b2b2d5124db13714ed82181c9558568d908dfa2a (patch) | |
| tree | 1779e0751eb49b1a62beff291792455a7e4ff740 /rtl/core/arm810.sv | |
| parent | 2cbccf921bf84665c55cea67b81f31c66dde4249 (diff) | |
Implement cp15 control
Diffstat (limited to 'rtl/core/arm810.sv')
| -rw-r--r-- | rtl/core/arm810.sv | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/rtl/core/arm810.sv b/rtl/core/arm810.sv index 1771464..6b27b2b 100644 --- a/rtl/core/arm810.sv +++ b/rtl/core/arm810.sv @@ -173,14 +173,15 @@ module arm810 ); logic coproc; - word coproc_read, coproc_write; + word coproc_read; + coproc_decode coproc_ctrl; core_cp15 cp15 ( .transfer(coproc), - .dec(dec.coproc), + .dec(coproc_ctrl), .read(coproc_read), - .write(coproc_write), + .write(rd_value_a), .* ); |
