class Rips::Formats::Format

Attributes

args_number[R]
opcode[R]

Public Class Methods

new(opcode, args_number) click to toggle source

@opcode = operation code in binary @args_number = number of format's arguments

# File lib/rips/formats/format.rb, line 12
def initialize (opcode, args_number)
  @opcode, @args_number = opcode, args_number
end