class Crabstone::Sparc::Operand

Public Instance Methods

imm?() click to toggle source
# File lib/crabstone/arch/3/sparc.rb, line 40
def imm?
  self[:type] == OP_IMM
end
mem?() click to toggle source
# File lib/crabstone/arch/3/sparc.rb, line 44
def mem?
  self[:type] == OP_MEM
end
reg?() click to toggle source
# File lib/crabstone/arch/3/sparc.rb, line 36
def reg?
  self[:type] == OP_REG
end