diff options
author | David Li <li.davidm96@gmail.com> | 2015-12-20 14:59:22 -0500 |
---|---|---|
committer | David Li <li.davidm96@gmail.com> | 2015-12-20 14:59:22 -0500 |
commit | 80c073a5c4a992598ecaf36c58d2294f6aa766d0 (patch) | |
tree | 416a845f3055e38005545f9c87b2b6445c878cf9 /src/isa/opcodes.rs | |
parent | 8ca42acf1a92ac0d811bbeecf8aed25a8c2d5a30 (diff) |
Implement JAL, JALR
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; |