jmce - 1_02

jmce.sim
Interface TraceListener

All Known Implementing Classes:
Monitor

public interface TraceListener

Listener to trace cpu execution.

This listener can be register to one CPU to wait for trace event. Trace event track code execution and are hardware depending but normally have one line with the disassmbled code and one with the register value after the execution of the code.

Version:
1.00
Author:
Mario Viara

Method Summary
 void trace(java.lang.String s)
          When the cpu execute one istruction trace the execution and send to this listener the String with the description with the executed code.
 

Method Detail

trace

void trace(java.lang.String s)
           throws SIMException
When the cpu execute one istruction trace the execution and send to this listener the String with the description with the executed code. One istruction can generated one or more line of trace.

Parameters:
s - - String with code executed.
Throws:
SIMException

jmce - 1_02