jmce - 1_02

jmce.mos
Interface M65XXConstants

All Known Implementing Classes:
M6502, VIC20

public interface M65XXConstants

MOS 65XX Constants.

Since:
1.01
Version:
1.00
Author:
Mario Viara

Field Summary
static int BRK_VECTOR
          Break vector
static int IRQ_VECTOR
          Interrupt vector
static int NMI_VECTTOR
          NMI vector
static int P_B
          BRK command
static int P_C
          Carry Flag
static int P_D
          Decimal mode
static int P_E
           
static int P_I
          Irq disable
static int P_S
          Sign
static int P_V
          Overflow
static int P_Z
          Zero flag
static int RESET_VECTOR
          Reset vector
static int S_PAGE
          Page for the stack
static int Z_PAGE
          Page for the ZERO address
 

Field Detail

P_S

static final int P_S
Sign

See Also:
Constant Field Values

P_V

static final int P_V
Overflow

See Also:
Constant Field Values

P_E

static final int P_E
See Also:
Constant Field Values

P_B

static final int P_B
BRK command

See Also:
Constant Field Values

P_D

static final int P_D
Decimal mode

See Also:
Constant Field Values

P_I

static final int P_I
Irq disable

See Also:
Constant Field Values

P_Z

static final int P_Z
Zero flag

See Also:
Constant Field Values

P_C

static final int P_C
Carry Flag

See Also:
Constant Field Values

Z_PAGE

static final int Z_PAGE
Page for the ZERO address

See Also:
Constant Field Values

S_PAGE

static final int S_PAGE
Page for the stack

See Also:
Constant Field Values

IRQ_VECTOR

static final int IRQ_VECTOR
Interrupt vector

See Also:
Constant Field Values

BRK_VECTOR

static final int BRK_VECTOR
Break vector

See Also:
Constant Field Values

RESET_VECTOR

static final int RESET_VECTOR
Reset vector

See Also:
Constant Field Values

NMI_VECTTOR

static final int NMI_VECTTOR
NMI vector

See Also:
Constant Field Values

jmce - 1_02