Sha256: 3ad7e495d59e13b420f35440652f199519eeddf982d7d15efe3115968443d133

Contents?: true

Size: 487 Bytes

Versions: 5

Compression:

Stored size: 487 Bytes

Contents

require "rips/instructions/instruction"

module Rips
  module Instructions

    class Add < Instruction

      attr_reader :variables, :length

      # @variables: types of instruction's variables
      # @length: length in bits for each variable
      def initialize
        super("add",Formats::DFormat.new(0b0010))
        @variables = [Variables::Register.new, Variables::Register.new, Variables::Register.new]
        @length = {r3:4, r2:4, r1:4, op:4}
      end
    end
  end  
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
rips-0.1.1 lib/rips/instructions/add.rb
rips-0.1.0 lib/rips/instructions/add.rb
rips-0.0.8 lib/rips/instructions/add.rb
rips-0.0.7 lib/rips/instructions/add.rb
rips-0.0.6 lib/rips/instructions/add.rb