Class: Rips::Instructions::Nop

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Instruction

#args_number, #code, #set_arguments

Constructor Details

#initializeNop

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



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

def initialize
  super("nop",Formats::AFormat.new(0b111111))
  @variables = []
  @length = {op:6, blank:10}
end

Instance Attribute Details

#lengthObject (readonly)

Returns the value of attribute length.



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

def length
  @length
end

#variablesObject (readonly)

Returns the value of attribute variables.



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

def variables
  @variables
end