Class: Rips::Instructions::Neg

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Instruction

#args_number, #code, #set_arguments

Constructor Details

#initializeNeg

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



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

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

Instance Attribute Details

#lengthObject (readonly)

Returns the value of attribute length.



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

def length
  @length
end

#variablesObject (readonly)

Returns the value of attribute variables.



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

def variables
  @variables
end