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