using System; namespace Cosmos.CPU { public class Memory { int mPtr; public Memory(int aPtr) { mPtr = aPtr; } } }