forked from chipsalliance/rocket-chip
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Instructions: Separate rocket custom instructions
As standard instructions are synced from riscv-opcodes
- Loading branch information
1 parent
21f1ec1
commit cfac7a5
Showing
2 changed files
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
// See LICENSE.SiFive for license details. | ||
// See LICENSE.Berkeley for license details. | ||
|
||
package freechips.rocketchip.rocket | ||
|
||
import Chisel._ | ||
|
||
object CustomInstructions { | ||
def CEASE = BitPat("b00110000010100000000000001110011") | ||
def CFLUSH_D_L1 = BitPat("b111111000000?????000000001110011") | ||
def CDISCARD_D_L1 = BitPat("b111111000010?????000000001110011") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters