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:
parent
c61234f7e4
commit
a713290deb
1 changed files with 7 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue