simulator
Class SimThread

java.lang.Object
  extended by simulator.SimThread
All Implemented Interfaces:
java.lang.Runnable

public class SimThread
extends java.lang.Object
implements java.lang.Runnable

This class is the (instruction by instruction) simulation of a PIC 16F877. It implements the run method and is called after the simulation thread is created.


Field Summary
 boolean cont
           
 PIC pic
           
 boolean step
           
 
Constructor Summary
SimThread(PIC pic)
          Main constructor of the simulation thread class.
 
Method Summary
 void run()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

pic

public PIC pic

step

public boolean step

cont

public boolean cont
Constructor Detail

SimThread

public SimThread(PIC pic)
Main constructor of the simulation thread class.

Parameters:
pic -
Method Detail

run

public void run()
Specified by:
run in interface java.lang.Runnable