Class: Rips::Instructions::Jal

Inherits:
Instruction show all
Defined in:
lib/rips/instructions/jal.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Instruction

#args_number, #code, #set_arguments

Constructor Details

#initializeJal

@variables: types of instruction’s variables @length: length in bits for each variable



12
13
14
15
16
# File 'lib/rips/instructions/jal.rb', line 12

def initialize
  super("jal",Formats::BFormat.new(0b101000))
  @variables = [Variables::Address.new]
  @length = {r1:10, op:6}
end

Instance Attribute Details

#lengthObject (readonly)

Returns the value of attribute length.



8
9
10
# File 'lib/rips/instructions/jal.rb', line 8

def length
  @length
end

#variablesObject (readonly)

Returns the value of attribute variables.



8
9
10
# File 'lib/rips/instructions/jal.rb', line 8

def variables
  @variables
end