Class: Rips::Instructions::Lesr

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Instruction

#args_number, #code, #set_arguments

Constructor Details

#initializeLesr

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



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

def initialize
  super("lesr",Formats::CFormat.new(0b1011))
  @variables = [Variables::Register.new, Variables::Port.new]
  @length = {r2:4, r1:2, op:4, blank:6}
end

Instance Attribute Details

#lengthObject (readonly)

Returns the value of attribute length.



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

def length
  @length
end

#variablesObject (readonly)

Returns the value of attribute variables.



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

def variables
  @variables
end