class Rips::Instructions::Neg

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/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