summaryrefslogtreecommitdiff
path: root/inst.chisel
diff options
context:
space:
mode:
authorGravatar Andrew Waterman <waterman@eecs.berkeley.edu>2014-01-13 16:25:55 -0800
committerGravatar Andrew Waterman <waterman@eecs.berkeley.edu>2014-01-13 16:25:55 -0800
commitd372a0e5a897f499178c38851e17c3bd82e672c1 (patch)
tree0ba953391d6426a853bc65593491a16840c21f21 /inst.chisel
parenta80067441555d749160d2bcc5362604c4ee91395 (diff)
swap JAL/JALR again
Diffstat (limited to 'inst.chisel')
-rw-r--r--inst.chisel4
1 files changed, 2 insertions, 2 deletions
diff --git a/inst.chisel b/inst.chisel
index 0b68a65..a805101 100644
--- a/inst.chisel
+++ b/inst.chisel
@@ -1,13 +1,13 @@
/* Automatically generated by parse-opcodes */
object Instructions {
- def JAL = Bits("b?????????????????????????1100111")
- def JALR = Bits("b?????????????????000?????1101111")
def BEQ = Bits("b?????????????????000?????1100011")
def BNE = Bits("b?????????????????001?????1100011")
def BLT = Bits("b?????????????????100?????1100011")
def BGE = Bits("b?????????????????101?????1100011")
def BLTU = Bits("b?????????????????110?????1100011")
def BGEU = Bits("b?????????????????111?????1100011")
+ def JALR = Bits("b?????????????????000?????1100111")
+ def JAL = Bits("b?????????????????????????1101111")
def LUI = Bits("b?????????????????????????0110111")
def AUIPC = Bits("b?????????????????????????0010111")
def ADDI = Bits("b?????????????????000?????0010011")