diff options
author | David Li <li.davidm96@gmail.com> | 2015-12-20 22:33:03 -0500 |
---|---|---|
committer | David Li <li.davidm96@gmail.com> | 2015-12-20 22:33:03 -0500 |
commit | 600fcc814e27e7f38969726e1263a36592bbde58 (patch) | |
tree | d8e9cc7d61ece33f40a8d552e442ef75e29702e1 /src/isa/opcodes.rs | |
parent | 398e6b6a3c7cc7efd579e00f6f65bde40e39d628 (diff) | |
parent | 68a0d8cb83d028421972750ab7514fd3a9d39fd1 (diff) |
Merge branch 'master' of git.lidavidm.me:rustv
Diffstat (limited to 'src/isa/opcodes.rs')
-rw-r--r-- | src/isa/opcodes.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/isa/opcodes.rs b/src/isa/opcodes.rs index e5763e3..56b9568 100644 --- a/src/isa/opcodes.rs +++ b/src/isa/opcodes.rs @@ -1,6 +1,6 @@ pub const BRANCH: u32 = 0x63; pub const JALR: u32 = 0x67; -pub const JAL: u32 = 0x68; +pub const JAL: u32 = 0x6F; pub const INTEGER_IMMEDIATE: u32 = 0x13; pub const INTEGER_REGISTER: u32 = 0x33; pub const LOAD: u32 = 0x3; |