miSim

misim.microchip
Class PIC84_Option

java.lang.Object
  |
  +--misim.Register
        |
        +--misim.microchip.PIC84_Option

public class PIC84_Option
extends Register

This extends Register to implement the Option register functions


Field Summary
 boolean bInternalClock
           
 boolean bIntRisingEdge
           
 boolean bTmrRisingEdge
           
 int tmrPrescaler
           
 int wdPrescaler
           
 
Fields inherited from class misim.Register
machineState, simple, val
 
Constructor Summary
PIC84_Option(MachineState machineState)
           
 
Method Summary
 void handleUpdate()
          Subclasses should implement this to respond to changes made to the value of the register.
 
Methods inherited from class misim.Register
toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

bInternalClock

public boolean bInternalClock

bTmrRisingEdge

public boolean bTmrRisingEdge

bIntRisingEdge

public boolean bIntRisingEdge

tmrPrescaler

public int tmrPrescaler

wdPrescaler

public int wdPrescaler
Constructor Detail

PIC84_Option

public PIC84_Option(MachineState machineState)
Method Detail

handleUpdate

public void handleUpdate()
Description copied from class: Register
Subclasses should implement this to respond to changes made to the value of the register. This is only called when the member variable 'simple' is set to false.
Overrides:
handleUpdate in class Register

miSim