Sha256: d6ec788c1e147a37f5ecfa8450fdd02a6eab26dd0e47ab8b9c9c44a53a714e44
Contents?: true
Size: 408 Bytes
Versions: 5
Compression:
Stored size: 408 Bytes
Contents
require "rips/instructions/instruction" module Rips module Instructions class Nop < Instruction attr_reader :variables, :length # @variables: types of instruction's variables # @length: length in bits for each variable def initialize super("nop",Formats::AFormat.new(0b111111)) @variables = [] @length = {op:6, blank:10} end end end end
Version data entries
5 entries across 5 versions & 1 rubygems