Package net.sf.rej.util

Examples of net.sf.rej.util.ByteParser.peekByte()


    if (this.instruction != null)
      return ((Widenable) this.instruction).getWideSize(dc);

    ByteParser parser = dc.getParser();
    parser.getByte(); // throw away 0xc4(wide)
    this.opcode = parser.peekByte();
    this.instruction = InstructionSet.getInstance().getInstruction(
        this.opcode);
    if (!(this.instruction instanceof Widenable))
      throw new RuntimeException("Instruction "
          + this.instruction.getMnemonic() + " is not Widenable.");
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.