/*
 * Character.java:
 *
 * Currently an abstract class, representing a 5 bit value, which could
 * be an input from tape, character to display, or an instruction opcode.
 *
 * Changes:
 *   25/01/1999 - sgf22 - Created.
 */

abstract class Character {
  abstract Character(byte i);
  abstract Character(LongWord i);
  abstract Character(ShortWord i);

  // Return the value contained.
  abstract byte byteValue(void);

  // Return the EDSAC character associated with the number
  abstract String toString();
}
