jmce - 1_02

jmce.sim
Interface MemoryWriteListener

All Known Subinterfaces:
CRT
All Known Implementing Classes:
AbstractCRT, AT24C16, BreakPointWrite, Console, Console, Console, Console, CTC, Delay, DiseqcI2cBus, DiseqcMotor, Display, FDC, FDC, FDC, HD44780, I2cBus, Interrupt8051, Keyboard, Leds, Memory, Memory, Memory128K, Network, PersistentMemory, Port, Printer, SAA5050, ScreenPanel, Serial, SIMH, Speaker, SwingCRT, SysKit, Tape, Timer, ttyCRT, VIA6522, VIC6561, VIC6561

public interface MemoryWriteListener

Listener to wait for memory write event.

Version:
1.00
Author:
Mario Viara

Method Summary
 void writeMemory(Memory memory, int address, int value, int oldValue)
          Called when a memory write event occours.
 

Method Detail

writeMemory

void writeMemory(Memory memory,
                 int address,
                 int value,
                 int oldValue)
                 throws SIMException
Called when a memory write event occours.

This method is called when a memory write operation occours in the specified memory.

Parameters:
memory - - Memory involved in the write operation.
address - - Address written.
value - - Value written.
oldValue - - Old value of this memory location.
Throws:
SIMException

jmce - 1_02