miSim

misim
Interface ProcessorListener

All Known Implementing Classes:
MiSimDE, MonitorPlugin, Lcd2Plugin, BreadBoard

public interface ProcessorListener

The ProcessorListener is informed when the emulation starts or stops. It is used by miSim to update controls and report events that occur during emulation, and may be used by Plugins to respond to emulation events.


Method Summary
 void processorStateChange(int state, java.lang.String message)
          Called when the emulation starts or stops.
 

Method Detail

processorStateChange

public void processorStateChange(int state,
                                 java.lang.String message)
Called when the emulation starts or stops.
Parameters:
state - The new state of the processor, see the Processor STATE_ variables
message - A text message describing the event that has occured
See Also:
Processor.getState()

miSim