Hades logoHades applet banner
RAM write-hazard animation

applet icon

The image above shows a thumbnail of the interactive Java applet embedded into this page. Unfortunately, your browser is not Java-aware or Java is disabled in the browser preferences. To start the applet, please enable Java and reload this page. (You might have to restart the browser.)

Circuit Description

This applet demonstrates both the quick write operation possible with standard RAMs and the assorted risk of hazards and memory corruption. Please see the previous applets for an explanation of the RAM structure and the animations and description of the standard write-cycles and read-operations.

The animation shown here runs for about 30 seconds; just re-start the simulator (click stop, then play) to watch the sequence again.

The timing of the write operations shown in the previous write-cycle demonstration first ensured that all address and data input values were stable, and the activated the nWriteEnable input to write the input data to the selected memory address. The nWriteEnable signal was then de-asserted before changing the data and address inputs again. This is the standard (and recommended) write operation.

However, it is also possible to modify the address and data inputs while the nWriteEnable is active (low). As the memory is built from latches (level-triggered), the memory cells are constantly overwritten with the current data input while the nWriteEnable signal is active. This is demonstrated during the first part of the animation sequence shown in this applet. First, the data inputs and address inputs are initialized to all zero; then the nChipSelect input is asserted (low) to select the memory chip. When the nWriteEnable input is activated (low), the RAM writes the current input data immediately to the selected memory cell (at address 0). Next, the address inputs are changed to addresses 01b, 10b, 11b, while nWriteEnable is kept low. This writes the data input value (0000b) to the selected memory cells in turn. Obviously, clearing the RAM with this operation is much faster when compared with the previous sequence, which would deactivate the nWriteEnable signal between the write operations.

Unfortunately, the fast write operations cannot be used in general, due to hazard problems. This is demonstrated by the second part of the animation sequence. After the RAM has been cleared (see above), the data inputs are now set to the value (1100b). We want to write this data value to both the memory cells at address 0 (00b) and address 3 (11b). The demo sequence starts with address 00b and activates the nWriteEnable input, to correctly write the memory at address 0. While nWriteEnable is kept low, the address is now changed to 11b, which correctly writes the memory at address 3. However, it is impossible to guarantee that all address bits change at the same time. In the demo sequence, address bit A0 changes slightly before bit A1, and the resulting hazard implies that the data input value (1100b) is also written to memory address 1 (01b).

The following image shows the waveforms of the RAM during the write operation; note the slight timing difference of the address inputs which results in the unwanted writing to address 1 (left of the crosshair cursor):

waveforms

Similar problems can occur if the nChipSelect and nWriteEnable inputs of RAM chips are driven by control signals that are not hazard-free. Even short 0-pulses on the nWriteEnable signal might be interpreted as valid write-commands by fast SRAM chips, randomly overwriting memory contents with whatever address- and data-inputs happen to be on its input pins at the time. Such problems can be very hard to debug. If in doubt, use additional flipflops to drive the nWriteEnable signals of RAM chips and use conservative write-cycle operations.

Print version | Run this demo in the Hades editor (via Java WebStart)
Usage | FAQ | About | License | Feedback | Tutorial (PDF) | Referenzkarte (PDF, in German)
Impressum http://tams.informatik.uni-hamburg.de/applets/hades/webdemos/40-memories/40-ram/ram-hazard-animation.html