class Rips::Instructions::Jr
Attributes
length[R]
variables[R]
Public Class Methods
new()
click to toggle source
@variables: types of instruction's variables @length: length in bits for each variable
Calls superclass method
Rips::Instructions::Instruction::new
# File lib/rips/instructions/jr.rb, line 12 def initialize super("jr",Formats::AFormat.new(0b111000)) @variables = [] @length = {op:6, blank:10} end