Class InstructionSet

java.lang.Object
  |
  +--InstructionSet

public abstract class InstructionSet
extends java.lang.Object

This class owns the instruction set table and offers services to handles it.
You can read the source of this class here.


Constructor Summary
InstructionSet()
           
 
Method Summary
static void DumpTable()
          This method dumps the instruction set to System.out.
static InstructionInformation Find(int op)
          Returns the InstructionInformation corresponding to the given opcode.
static InstructionInformation Find(java.lang.String mn)
          Returns the InstructionInformation corresponding to the given mnemonic.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

InstructionSet

public InstructionSet()
Method Detail

Find

public static InstructionInformation Find(java.lang.String mn)
Returns the InstructionInformation corresponding to the given mnemonic.
Parameters:
mn - Mnemonic.

Find

public static InstructionInformation Find(int op)
Returns the InstructionInformation corresponding to the given opcode.
Parameters:
op - Opcode.

DumpTable

public static void DumpTable()
This method dumps the instruction set to System.out.