Class RAM

java.lang.Object
  |
  +--RAM

public class RAM
extends java.lang.Object

Instances of this class are 68 bytes long RAM that can be read or written.
You can read the source of this class here.


Constructor Summary
RAM()
          Creates a RAM.
 
Method Summary
 int Read(int address)
          Returns the value stored at address in the RAM.
 void Write(int address, int n)
          Writes the value n at address in the RAM.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RAM

public RAM()
Creates a RAM.
Method Detail

Read

public int Read(int address)
Returns the value stored at address in the RAM.

Write

public void Write(int address,
                  int n)
Writes the value n at address in the RAM.