Sha256: 69e103308bba891dac89f7addffec4f8831dbce473dd525c988aae780f08dbf3
Contents?: true
Size: 355 Bytes
Versions: 1
Compression:
Stored size: 355 Bytes
Contents
require "rips/formats/format" module Rips module Formats class AFormat < Format attr_reader :args # @args: all instruction's arguments def initialize (opcode) super(opcode,0) @args = {} end # Pass all arguments at once def set_arguments (args) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rips-0.1.1 | lib/rips/formats/aformat.rb |