jmce - 1_02

jmce.intel.i8080
Interface I8080Constants

All Known Implementing Classes:
Altair, I8080, Imsai, P2000T, Spectrum, Spectrum128K, Spectrum48K, Yaze, Z80, Z80Pack

public interface I8080Constants

Intel 8080 constants.

This interface define all constants relative to the intel 8080.

Version:
1.00
Author:
Mario Viara

Field Summary
static int FLAG_3
          Reserved copy bit 3 of result
static int FLAG_5
          Reserved copy bit 5 of result
static int FLAG_C
          Carry flag
static int FLAG_H
          Half carry
static int FLAG_N
          Set if last aritmetis is SUB,SBC,DEC
static int FLAG_PV
          Parity / overflow
static int FLAG_S
          Result is signed (negative)
static int FLAG_Z
          Result is 0
 

Field Detail

FLAG_S

static final int FLAG_S
Result is signed (negative)

See Also:
Constant Field Values

FLAG_Z

static final int FLAG_Z
Result is 0

See Also:
Constant Field Values

FLAG_5

static final int FLAG_5
Reserved copy bit 5 of result

See Also:
Constant Field Values

FLAG_H

static final int FLAG_H
Half carry

See Also:
Constant Field Values

FLAG_3

static final int FLAG_3
Reserved copy bit 3 of result

See Also:
Constant Field Values

FLAG_PV

static final int FLAG_PV
Parity / overflow

See Also:
Constant Field Values

FLAG_N

static final int FLAG_N
Set if last aritmetis is SUB,SBC,DEC

See Also:
Constant Field Values

FLAG_C

static final int FLAG_C
Carry flag

See Also:
Constant Field Values

jmce - 1_02