Class AbstractInstructionOperandGeneric

java.lang.Object
com.pnfsoftware.jeb.core.units.code.asm.processor.AbstractInstructionOperandGeneric
All Implemented Interfaces:
IInstructionOperandGeneric, IInstructionOperandRegisterBased, IInstructionOperandSized, IInstructionOperand
Direct Known Subclasses:
AbstractInstructionOperandList, Operand

@Ser public abstract class AbstractInstructionOperandGeneric extends Object implements IInstructionOperandGeneric
Reference implementation for IInstructionOperandGeneric.
  • Field Details

    • type

      protected int type
    • bitsize

      protected int bitsize
    • value

      protected long value
  • Constructor Details

    • AbstractInstructionOperandGeneric

      public AbstractInstructionOperandGeneric(int type, int bitsize, long value)
      Create a generic instruction operand.
      Parameters:
      type - operand type
      bitsize - operand size in bits
      value - operand value
  • Method Details