class Crabstone::X86::Operand
Public Instance Methods
fp?()
click to toggle source
# File lib/crabstone/arch/3/x86.rb, line 54 def fp? self[:type] == OP_FP end
imm?()
click to toggle source
# File lib/crabstone/arch/3/x86.rb, line 46 def imm? self[:type] == OP_IMM end
mem?()
click to toggle source
# File lib/crabstone/arch/3/x86.rb, line 50 def mem? self[:type] == OP_MEM end
reg?()
click to toggle source
# File lib/crabstone/arch/3/x86.rb, line 42 def reg? self[:type] == OP_REG end