jmce - 1_02

jmce.sim
Interface MemoryReadListener

All Known Implementing Classes:
Altair, BreakPointExec, BreakPointRead, Console, Console, Console, Console, CTC, Delay, Display, FDC, FDC, FDC, HD44780, Leds, Memory, Memory128K, Network, OpenCollectorMemoryBit, Printer, Serial, SIMH, SysKit, Timer, VIA6522, VIC6561, VIC6561

public interface MemoryReadListener

Listener to wait for memory write event.

Version:
1.00
Author:
Mario Viara

Method Summary
 int readMemory(Memory memory, int address, int value)
          Called when the memory is readed.
 

Method Detail

readMemory

int readMemory(Memory memory,
               int address,
               int value)
               throws SIMException
Called when the memory is readed.

This is method is called to notify a read at the specified memory loction.

Parameters:
memory - - Memory readed.
address - - Address where the operation occours.
value - - Value readed from the phisical memory or from previus installed listener.
Returns:
Value readed from the memory.
Throws:
SIMException

jmce - 1_02