Add MRET and WFI to the decoder

No TODO in the WFI block as it will be implemented as a no-op.
This commit is contained in:
Graham Edgecombe 2017-12-14 23:53:49 +00:00
parent c61234f7e4
commit a713290deb

View file

@ -481,6 +481,13 @@ module rv32_decode (
valid_out <= 1;
// TODO
end
`RV32_INSTR_MRET: begin
valid_out <= 1;
// TODO
end
`RV32_INSTR_WFI: begin
valid_out <= 1;
end
`RV32_INSTR_CSRRW: begin
valid_out <= 1;
// TODO