Interface OpcodeType


public interface OpcodeType

This interface's purpose is to give a name to opcode types rather than using literal values.
You can read the source of this class here.


Field Summary
static int File
          Opcode that includes only a File Register address.
static int FileAnd3BitsConst
          Opcode that includes both a File Register address and a 3 bits constant.
static int FileAndDest
          Opcode that includes both a File Register address and a destination field.
static int Literal11Bits
          Opcode that includes a 11 bits literal value (which is an offset in Flash).
static int Literal8Bits
          Opcode that includes a 8 bits literal value.
static int NoOperande
          Opcode without any operande.
 

Field Detail

FileAndDest

public static final int FileAndDest
Opcode that includes both a File Register address and a destination field.

File

public static final int File
Opcode that includes only a File Register address.

FileAnd3BitsConst

public static final int FileAnd3BitsConst
Opcode that includes both a File Register address and a 3 bits constant.

Literal8Bits

public static final int Literal8Bits
Opcode that includes a 8 bits literal value.

Literal11Bits

public static final int Literal11Bits
Opcode that includes a 11 bits literal value (which is an offset in Flash).

NoOperande

public static final int NoOperande
Opcode without any operande.