Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU/Memory.cs
2017-08-06 14:28:55 -04:00

10 lines
164 B
C#

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