miSim

misim
Class Regs

java.lang.Object
  |
  +--misim.Regs

public final class Regs
extends java.lang.Object

Constants class to identify the registers that are implemented for all devices of the class we emulate.


Field Summary
static int Fsr
          The FSR indirect control register (address 0x04)
static int Pcl
          The Program counter low byte register (address 0x02)
static int Status
          The status register (address 0x03)
static int Tmr0
          The timer register (address 0x01)
 
Constructor Summary
Regs()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

Tmr0

public static final int Tmr0
The timer register (address 0x01)

Pcl

public static final int Pcl
The Program counter low byte register (address 0x02)

Status

public static final int Status
The status register (address 0x03)

Fsr

public static final int Fsr
The FSR indirect control register (address 0x04)
Constructor Detail

Regs

public Regs()

miSim