jmce - 1_02

jmce.sim
Interface CycleListener

All Known Implementing Classes:
CTC, Speaker, Tape, Tape, Timer, Timer2, VIA6522, VIC6561, VIC6561

public interface CycleListener

Listener for event cycle.

This type of listener is called after the execution of every instructions if is very time consuming must be used only when necessary.

Version:
1.00
Author:
Mario Viara

Method Summary
 void cycle(int n)
          Cycle listener.
 

Method Detail

cycle

void cycle(int n)
           throws SIMException
Cycle listener. This type of listener is very time consuming and must be used only when necessary because can have great impact on the simulator performance.

Parameters:
n - - The number of microprocessor cycle elapsed from the last call.
Throws:
SIMException
See Also:
CPU.addCycleListener(jmce.sim.CycleListener)

jmce - 1_02