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