diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-11-01 21:00:50 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-11-01 23:04:24 -0600 |
| commit | 735c804c8e8e4bdcbe27c2e8ff74d609d7f45846 (patch) | |
| tree | 61088394df522dc232b3ba914a45cc26bec6825d /rtl/core/arm810.sv | |
| parent | 41b263bb39478393a302b284643a590779902f6c (diff) | |
Implement coprocessor instruction decode
Diffstat (limited to 'rtl/core/arm810.sv')
| -rw-r--r-- | rtl/core/arm810.sv | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/rtl/core/arm810.sv b/rtl/core/arm810.sv index 6028e91..6e4b777 100644 --- a/rtl/core/arm810.sv +++ b/rtl/core/arm810.sv @@ -35,6 +35,7 @@ module arm810 data_decode dec_data; ldst_decode dec_ldst; mul_decode dec_mul; + coproc_decode dec_coproc; core_decode decode ( @@ -44,6 +45,7 @@ module arm810 .data_ctrl(dec_data), .ldst_ctrl(dec_ldst), .mul_ctrl(dec_mul), + .coproc_ctrl(dec_coproc), .* ); |
