Sha256: 02c2f16778584096a98edcaf339ea8fbac5525049cf1b8991ee17776e07ff0b6

Contents?: true

Size: 430 Bytes

Versions: 5

Compression:

Stored size: 430 Bytes

Contents

require "rips/instructions/instruction"

module Rips
  module Instructions

    class J < Instruction

      attr_reader :variables, :length

      # @variables: types of instruction's variables
      # @length: length in bits for each variable
      def initialize
        super("j",Formats::BFormat.new(0b1001))
        @variables = [Variables::Address.new]
        @length = {r1:10, op:4, blank:2}
      end
    end
  end  
end

Version data entries

5 entries across 5 versions & 1 rubygems

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