Sha256: 86cc6fe58ba7ca2df04eec61dde965ac0ff00cb125040c8787a1a0bf28a4dd06
Contents?: true
Size: 431 Bytes
Versions: 5
Compression:
Stored size: 431 Bytes
Contents
require "rips/instructions/instruction" module Rips module Instructions class Ji < Instruction attr_reader :variables, :length # @variables: types of instruction's variables # @length: length in bits for each variable def initialize super("ji",Formats::BFormat.new(0b011000)) @variables = [Variables::Inmediate.new(10)] @length = {r1:10, op:6} end end end end
Version data entries
5 entries across 5 versions & 1 rubygems