public int GetIntValue() { return(Maths.ByteArrToInt(value)); }
public void SetValue(byte value) { int memoryLocation = Maths.ByteArrToInt(location); this.data[memoryLocation] = value; }
public int GetPC() { int PC = Maths.ByteArrToInt(programCounter); return(PC); }
public byte ReadData(byte[] location) { int memoryLocation = Maths.ByteArrToInt(location); return(data[memoryLocation]); }