diff options
| author | Alejandro Soto <alejandro@34project.org> | 2023-09-25 19:12:49 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2023-09-25 21:33:49 -0600 |
| commit | ed0bd705f94f6aea568ec8405534984a37770f21 (patch) | |
| tree | af19fc67177962c14ce7ab88d75dcaa1b1e3aee3 /rtl/core/decode/coproc_dec.sv | |
| parent | cd02f821525b8710dd37e2bc39a8a7dbc36ac4b0 (diff) | |
rtl/core, tb: replace bus_master with a new top-level module
Diffstat (limited to 'rtl/core/decode/coproc_dec.sv')
| -rw-r--r-- | rtl/core/decode/coproc_dec.sv | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/rtl/core/decode/coproc_dec.sv b/rtl/core/decode/coproc_dec.sv new file mode 100644 index 0000000..153cadf --- /dev/null +++ b/rtl/core/decode/coproc_dec.sv @@ -0,0 +1,24 @@ +`include "core/decode/isa.sv" +`include "core/uarch.sv" + +module core_decode_coproc +( + input word insn, + + output coproc_decode decode, + output reg_num rd, + output logic writeback, + update_flags +); + + assign rd = insn `FIELD_CP_RD; + assign writeback = decode.load && rd != `R15; + assign update_flags = decode.load && rd == `R15; + + assign decode.crn = insn `FIELD_CP_CRN; + assign decode.crm = insn `FIELD_CP_CRM; + assign decode.op1 = insn `FIELD_CP_OPCODE; + assign decode.op2 = insn `FIELD_CP_OPCODE2; + assign decode.load = insn `FIELD_CP_LOAD; + +endmodule |
